diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-23 00:42:24 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-23 00:42:24 +0000 |
commit | 8d59b05791f60fdb87bcc401f1cbffbcde40de11 (patch) | |
tree | d16a2e9fb89348e860b286cd93c3a1de3274da35 | |
parent | 75e966659306a5d6e781bb76ce67ad2f1423d724 (diff) | |
download | busybox-w32-8d59b05791f60fdb87bcc401f1cbffbcde40de11.tar.gz busybox-w32-8d59b05791f60fdb87bcc401f1cbffbcde40de11.tar.bz2 busybox-w32-8d59b05791f60fdb87bcc401f1cbffbcde40de11.zip |
__GLIBC__ -> defined(__GLIBC__)
git-svn-id: svn://busybox.net/trunk/busybox@16423 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index 868fa50e5..151d3a190 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -17,7 +17,7 @@ | |||
17 | #include <string.h> | 17 | #include <string.h> |
18 | #include <assert.h> | 18 | #include <assert.h> |
19 | 19 | ||
20 | #if ENABLE_STATIC && __GLIBC__ | 20 | #if ENABLE_STATIC && defined(__GLIBC__) |
21 | #warning Static linking against glibc produces buggy executables | 21 | #warning Static linking against glibc produces buggy executables |
22 | #warning (glibc doesn't cope well with ld --gc-sections). | 22 | #warning (glibc doesn't cope well with ld --gc-sections). |
23 | #warning See http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400 | 23 | #warning See http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400 |