mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-29 20:50:14 +01:00
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:
parent
fdb5e2aa47
commit
b217f95fa0
2 changed files with 9 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue