X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2Fsysdep.h;h=0377029e6e77f5d9b037ab6c787e11be2e979e79;hb=a9a2b34b052cfa903462124f59fbfeed7eaf374b;hp=ec50e0452c99635db37ea1ec40536c7d21b642ca;hpb=bc8f473272ec29b0d0021dbcab6ac561ddc6249d;p=wget diff --git a/src/sysdep.h b/src/sysdep.h index ec50e045..0377029e 100644 --- a/src/sysdep.h +++ b/src/sysdep.h @@ -41,6 +41,10 @@ as that of the covered work. */ # endif #endif +#if defined(__INTERIX) && !defined(_ALL_SOURCE) +# define _ALL_SOURCE +#endif + /* The "namespace tweaks" below attempt to set a friendly "compilation environment" under popular operating systems. Default compilation environment often means that some functions that are "extensions" @@ -57,7 +61,7 @@ as that of the covered work. */ # define NAMESPACE_TWEAKS #endif -#ifdef __linux__ +#if defined(__linux__) || defined(__GLIBC__) # define NAMESPACE_TWEAKS #endif @@ -68,7 +72,7 @@ as that of the covered work. */ /* For Solaris: request everything else that is available and doesn't conflict with the above. */ -#define __EXTENSIONS__ +/* #define __EXTENSIONS__ */ /* XXX clashes with config.h */ /* For Linux: request features of 4.3BSD and SVID (System V Interface Definition). */ @@ -78,7 +82,7 @@ as that of the covered work. */ /* Under glibc-based systems we want all GNU extensions as well. This declares some unnecessary cruft, but also useful functions such as timegm, FNM_CASEFOLD extension to fnmatch, memrchr, etc. */ -#define _GNU_SOURCE +/* #define _GNU_SOURCE */ /* XXX clashes with config.h */ #endif /* NAMESPACE_TWEAKS */