diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2008-06-03 16:40:54 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2008-06-03 16:40:54 +0000 |
commit | 1a8e9f9ec06d6fa373c9d84eb98b268d9e1e446f (patch) | |
tree | 3f8f0793370403d70562df318156702599da7c9d /config.h.in | |
parent | 9b968ec5a2bd814c54594696cbd000cf6535ffa5 (diff) | |
download | libxslt-1a8e9f9ec06d6fa373c9d84eb98b268d9e1e446f.tar.gz libxslt-1a8e9f9ec06d6fa373c9d84eb98b268d9e1e446f.tar.bz2 libxslt-1a8e9f9ec06d6fa373c9d84eb98b268d9e1e446f.zip |
patch from Nick Wellnhofer adding xsl:sort lang support using the locale
* configure.in libxslt/extra.c libxslt/Makefile.am libxslt/preproc.c
libxslt/xsltInternals.h libxslt/xsltlocale.c libxslt/xsltlocale.h
libxslt/xsltutils.c win32/Makefile.mingw win32/Makefile.msvc: patch
from Nick Wellnhofer adding xsl:sort lang support using the locale
support from the C library.
Daniel
svn path=/trunk/; revision=1476
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 1b61d2bb..1eebe19d 100644 --- a/config.h.in +++ b/config.h.in @@ -123,6 +123,9 @@ /* Define to 1 if you have the `vsprintf' function. */ #undef HAVE_VSPRINTF +/* Have working xlocale.h */ +#undef HAVE_XLOCALE_H + /* Define to 1 if you have the `_stat' function. */ #undef HAVE__STAT @@ -150,6 +153,11 @@ /* Version number of package */ #undef VERSION +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif + /* Using the Win32 Socket implementation */ #undef _WINSOCKAPI_ |