X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2Fsysdep.h;h=f36b0267b5ba25bbd1c6acafb1dbb374022a3088;hb=7415b33b6c35134f72aa6b2a76ef99b9598234af;hp=b91cc1e6ef06a78852f023692b36153aa9400409;hpb=462e643a7e31676eceda23e634241f7b4d2cd7bb;p=wget diff --git a/src/sysdep.h b/src/sysdep.h index b91cc1e6..f36b0267 100644 --- a/src/sysdep.h +++ b/src/sysdep.h @@ -1,6 +1,6 @@ /* Dirty system-dependent hacks. - Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, + 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. This file is part of GNU Wget. @@ -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 */