Explicitly set LANG=C to fix the awk string->number conversion for user with locales that don't match ASCII digit conventions.

This commit is contained in:
Carl Worth 2004-08-14 06:35:30 +00:00
parent 62e4b869cd
commit adabb18408
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2004-08-14 Carl Worth <cworth@isi.edu>
* autogen.sh (LANG): Explicitly set LANG=C to fix the awk
string->number conversion for user with locales that don't match
ASCII digit conventions.
2004-08-03 Carl Worth <cworth@isi.edu>
* src/cairo_gstate.c (extract_transformed_rectangle): Temporarily

View file

@ -1,6 +1,5 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
set -e
PACKAGE=cairo
@ -20,6 +19,8 @@ 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
ARGV0=$0