On Sat, May 03, 2008 at 01:16:56AM -0500, Dan McGee wrote: > > That change makes it work fine here. Thanks for looking into all of this. OK this is what I've committed. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <herbert@xxxxxxxxxxxxxxxxxxx> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- commit d2bb89771175405c308a8a89424eeb82a15aaaee Author: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> Date: Sat May 3 14:17:40 2008 +0800 [CD] Test __GLIBC__ instead of _GNU_SOURCE AC_GNU_SOURCE always defines _GNU_SOURCE so testing it is pointless. This patch changes it to test __GLIBC__ instead. Signed-off-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> diff --git a/ChangeLog b/ChangeLog index 1126b04..94b37c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2008-05-03 Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> * Fixed _PATH_BSHELL warning. + * Test __GLIBC__ instead of _GNU_SOURCE. 2008-05-02 Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> diff --git a/src/cd.c b/src/cd.c index cb6e24d..73ccde0 100644 --- a/src/cd.c +++ b/src/cd.c @@ -249,7 +249,7 @@ inline STATIC char * getpwd() { -#ifdef _GNU_SOURCE +#ifdef __GLIBC__ char *dir = getcwd(0, 0); return dir ? dir : nullstr; #else -- To unsubscribe from this list: send the line "unsubscribe dash" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html