diff options
author | Thomas Sachau <tommy@gentoo.org> | 2009-08-05 14:50:37 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2009-08-05 14:50:37 +0000 |
commit | 1d0411dbaee79ae2d100b813d28bfb53263a5d9c (patch) | |
tree | 3c61d4097bcf0e27bd1a0ac77c017eec14a4cea8 /www-client/mozilla-firefox/files | |
parent | Version bump for security fixes (proxy commit for mozilla team) (diff) | |
download | historical-1d0411dbaee79ae2d100b813d28bfb53263a5d9c.tar.gz historical-1d0411dbaee79ae2d100b813d28bfb53263a5d9c.tar.bz2 historical-1d0411dbaee79ae2d100b813d28bfb53263a5d9c.zip |
Version bump for security fixes (proxy commit for mozilla team)
Package-Manager: portage-2.2_rc35-r1/cvs/Linux x86_64
Diffstat (limited to 'www-client/mozilla-firefox/files')
-rw-r--r-- | www-client/mozilla-firefox/files/000_flex-configure-LANG.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/www-client/mozilla-firefox/files/000_flex-configure-LANG.patch b/www-client/mozilla-firefox/files/000_flex-configure-LANG.patch new file mode 100644 index 000000000000..6d32a8537508 --- /dev/null +++ b/www-client/mozilla-firefox/files/000_flex-configure-LANG.patch @@ -0,0 +1,41 @@ +The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in +option parsing, it may break. + +http://bugs.gentoo.org/103483 + +--- configure~ 2009-07-31 20:07:25.087663220 -0500 ++++ configure 2009-07-31 20:07:37.987684452 -0500 +@@ -468,6 +468,16 @@ + infodir='${prefix}/info' + mandir='${prefix}/man' + ++# NLS nuisances. ++# Only set these to C if already set. These must not be set unconditionally ++# because not all systems understand e.g. LANG=C (notably SCO). ++# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! ++# Non-C LC_CTYPE values break the ctype check. ++if test "${LANG+set}" = set; then LANG=C; export LANG; fi ++if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi ++if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi ++if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi ++ + # Initialize some other variables. + subdirs= + MFLAGS= MAKEFLAGS= +@@ -856,16 +866,6 @@ + esac + done + +-# NLS nuisances. +-# Only set these to C if already set. These must not be set unconditionally +-# because not all systems understand e.g. LANG=C (notably SCO). +-# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! +-# Non-C LC_CTYPE values break the ctype check. +-if test "${LANG+set}" = set; then LANG=C; export LANG; fi +-if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi +-if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi +-if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi +- + # confdefs.h avoids OS command line length limits that DEFS can exceed. + rm -rf conftest* confdefs.h + # AIX cpp loses on an empty file, so make sure it contains at least a newline. |