Skip to content

Commit

Permalink
Explicitly set LANG=C to fix the awk string->number conversion for us…
Browse files Browse the repository at this point in the history
…er with locales that don't match ASCII digit conventions.
  • Loading branch information
Carl Worth committed Aug 14, 2004
1 parent 62e4b86 commit adabb18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e

PACKAGE=cairo
Expand All @@ -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

Expand Down

0 comments on commit adabb18

Please sign in to comment.