diff options
author | William M. Brack <wbrack@src.gnome.org> | 2004-02-26 17:04:11 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2004-02-26 17:04:11 +0000 |
commit | 85831bf16141a154484c3bd95fdf4bca93340cbb (patch) | |
tree | 5d370da941a5d999e334dca4890a7af63dcd3373 /config.h.in | |
parent | 58b080f3fbe363edee4b830a4cc5cc8572f8c888 (diff) | |
download | libxslt-85831bf16141a154484c3bd95fdf4bca93340cbb.tar.gz libxslt-85831bf16141a154484c3bd95fdf4bca93340cbb.tar.bz2 libxslt-85831bf16141a154484c3bd95fdf4bca93340cbb.zip |
added test for localtime_r added usage of localtime_r if present on system
* configure.in, config.h.in: added test for localtime_r
* libexslt/date.c: added usage of localtime_r if present on
system (bug 129983, suggested by Vasily Tchekalkin)
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index d7f6ba85..3388df5e 100644 --- a/config.h.in +++ b/config.h.in @@ -42,6 +42,9 @@ /* Define to 1 if you have the `localtime' function. */ #undef HAVE_LOCALTIME +/* Define to 1 if you have the `localtime_r' function. */ +#undef HAVE_LOCALTIME_R + /* Define to 1 if you have the <math.h> header file. */ #undef HAVE_MATH_H @@ -140,3 +143,12 @@ /* Version number of package */ #undef VERSION + +/* Using the Win32 Socket implementation */ +#undef _WINSOCKAPI_ + +/* Win32 Std C name mangling work-around */ +#undef snprintf + +/* Win32 Std C name mangling work-around */ +#undef vsnprintf |