Set LC_ALL=C rather than LANG and LC_NUMERIC to be robust against whatever settings the user has. (Martin Dobias)

This commit is contained in:
Owen Taylor 2005-08-22 08:33:54 +00:00
parent fdb5e2aa47
commit b217f95fa0
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2005-08-22 Owen Taylor <otaylor@redhat.com>
* autogen.sh: Set LC_ALL=C rather than LANG and LC_NUMERIC to be
robust against whatever settings the user has. (Martin Dobias)
2005-08-21 Billy Biggs <vektor@dumbterm.net>
* src/cairo.c: (cairo_paint_with_alpha): Optimize away calls to

View file

@ -17,9 +17,10 @@ aclocal_min_vers=$automake_min_vers
autoconf_min_vers=2.54
libtoolize_min_vers=1.4
# The awk-based string->number conversion we use needs a C locale to work as expected.
LANG=C
LC_NUMERIC=C
# The awk-based string->number conversion we use needs a C locale to work
# as expected. Setting LC_ALL overrides whether the user set LC_ALL,
# LC_NUMERIC, or LANG.
LC_ALL=C
ARGV0=$0