diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2008-08-01 08:27:18 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2008-08-01 08:27:18 +0000 |
commit | 79ab294f6f75042e12cbf96ed5dded0ae622a650 (patch) | |
tree | e4bd73968cc5a736d9651db5ed8df33fede681ed /win32 | |
parent | a85673c19dcc57071c0ade9208a09da76f8d16f5 (diff) | |
download | libxslt-79ab294f6f75042e12cbf96ed5dded0ae622a650.tar.gz libxslt-79ab294f6f75042e12cbf96ed5dded0ae622a650.tar.bz2 libxslt-79ab294f6f75042e12cbf96ed5dded0ae622a650.zip |
big patch from Roumen Petrov finishing xsl:sort lang support with many
* libxslt/xsltconfig.h.in libxslt/xslt.c libxslt/extensions.c
libxslt/xsltlocale.c libxslt/preproc.c libxslt/xsltutils.c
libxslt/xsltlocale.h libxslt/win32config.h configure.in
config.h.in win32/configure.js: big patch from Roumen Petrov
finishing xsl:sort lang support with many portability issues
fixed and feedback from Nick Wellnhofer and Rob Richards
Daniel
svn path=/trunk/; revision=1488
Diffstat (limited to 'win32')
-rw-r--r-- | win32/configure.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/configure.js b/win32/configure.js index 4feb4b27..7f2f8548 100644 --- a/win32/configure.js +++ b/win32/configure.js @@ -107,7 +107,7 @@ function usage() txt += " zlib: Use zlib library (" + (withZlib? "yes" : "no") + ")\n"; txt += " crypto: Enable Crypto support (" + (withCrypto? "yes" : "no") + ")\n"; txt += " modules: Enable Module support (" + (withModules? "yes" : "no") + ")\n"; - txt += " locale: Enable Locale support, requires msvcr80.dll (" + (withLocale? "yes" : "no") + ")\n"; + txt += " locale: Enable Locale support, requires unicode OS support (" + (withLocale? "yes" : "no") + ")\n"; txt += "\nWin32 build options, default value given in parentheses:\n\n"; txt += " compiler: Compiler to be used [msvc|mingw] (" + compiler + ")\n"; txt += " cruntime: C-runtime compiler option (only msvc) (" + cruntime + ")\n"; @@ -244,8 +244,8 @@ function configureXslt() of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0")); } else if (s.search(/\@XSLT_LOCALE_XLOCALE\@/) != -1) { of.WriteLine(s.replace(/\@XSLT_LOCALE_XLOCALE\@/, "0")); - } else if (s.search(/\@XSLT_LOCALE_MSVCRT\@/) != -1) { - of.WriteLine(s.replace(/\@XSLT_LOCALE_MSVCRT\@/, withLocale? "1" : "0")); + } else if (s.search(/\@XSLT_LOCALE_WINAPI\@/) != -1) { + of.WriteLine(s.replace(/\@XSLT_LOCALE_WINAPI\@/, withLocale? "1" : "0")); } else if (s.search(/\@LIBXSLT_DEFAULT_PLUGINS_PATH\@/) != -1) { of.WriteLine(s.replace(/\@LIBXSLT_DEFAULT_PLUGINS_PATH\@/, "NULL")); } else |