diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-08 18:03:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-08 18:03:01 +0000 |
commit | 44c64b781045b8a070d8dd7edb1e609773b9f1ac (patch) | |
tree | 0a755dc58ae498bdaa180ca8d0323140baa8edc8 | |
parent | 507ecb8d3ec2d7451c705916ba1da634f0f7eef3 (diff) | |
download | coreutils-44c64b781045b8a070d8dd7edb1e609773b9f1ac.tar.xz |
[!_LIBC]: Ensure that the required autoconf test has been run.
-rw-r--r-- | lib/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c index 838cfa710..1c94d4cc5 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -493,7 +493,7 @@ static CHAR_T const month_name[][10] = # define ns 0 #endif -#if ! HAVE_RUN_TZSET_TEST +#if ! defined _LIBC && ! HAVE_RUN_TZSET_TEST /* Solaris 2.5.x and 2.6 tzset sometimes modify the storage returned by localtime. On such systems, we must use the tzset and localtime wrappers to work around the bug. */ |