diff options
author | joerg <joerg@pkgsrc.org> | 2008-04-21 22:39:15 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-04-21 22:39:15 +0000 |
commit | 8c90ddd93075b1a79d4cf6bda680b196fc214dda (patch) | |
tree | 5586953dffc71626bf0aa30eb29f60785b5ba64b /net | |
parent | 8eadbc1bd4f8158cc799119063899a7fa6b3dff1 (diff) | |
download | pkgsrc-8c90ddd93075b1a79d4cf6bda680b196fc214dda.tar.gz |
Actually, just check for linux and ignore hurd...
Diffstat (limited to 'net')
-rw-r--r-- | net/libfetch/files/http.c | 4 |
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 |