mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 08:48:00 +02:00
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:
parent
62e4b869cd
commit
adabb18408
2 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue