summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2008-04-21 22:39:15 +0000
committerjoerg <joerg@pkgsrc.org>2008-04-21 22:39:15 +0000
commit110e57f85e15db1b88a0cdeca7951abc5318876c (patch)
tree5586953dffc71626bf0aa30eb29f60785b5ba64b /net
parent566201d75d6e8c3498430edd1916723ea90113e8 (diff)
downloadpkgsrc-110e57f85e15db1b88a0cdeca7951abc5318876c.tar.gz
Actually, just check for linux and ignore hurd...
Diffstat (limited to 'net')
-rw-r--r--net/libfetch/files/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/libfetch/files/http.c b/net/libfetch/files/http.c
index 6b6fc446f50..d6931184419 100644
--- a/net/libfetch/files/http.c
+++ b/net/libfetch/files/http.c
@@ -1,4 +1,4 @@
-/* $NetBSD: http.c,v 1.16 2008/04/21 22:36:08 joerg Exp $ */
+/* $NetBSD: http.c,v 1.17 2008/04/21 22:39:15 joerg Exp $ */
/*-
* Copyright (c) 2000-2004 Dag-Erling Coïdan Smørgrav
* Copyright (c) 2003 Thomas Klausner <wiz@NetBSD.org>
@@ -68,7 +68,7 @@
#endif
#include <nbcompat.h>
-#ifdef __GLIBC__
+#ifdef __linux__
/* Keep this down to Linux, it can create surprises else where. */
#define _XOPEN_SOURCE
#endif