summaryrefslogtreecommitdiff
path: root/2.0
diff options
context:
space:
mode:
authorChristian Heim <phreak@gentoo.org>2007-01-08 20:01:15 +0000
committerChristian Heim <phreak@gentoo.org>2007-01-08 20:01:15 +0000
commitb1c4444994378f48fc6f8d2e56e838f86ce941e4 (patch)
tree77917a1db11df719c73b30110a538fbc71abb360 /2.0
parentAdding a patch for <2.2.0 for 'POST incompatible w/ renegotiate https: connec... (diff)
downloadapache-b1c4444994378f48fc6f8d2e56e838f86ce941e4.tar.gz
apache-b1c4444994378f48fc6f8d2e56e838f86ce941e4.tar.bz2
apache-b1c4444994378f48fc6f8d2e56e838f86ce941e4.zip
Working around issues with LC_ALL != C (#138591 thanks to vapier for the patch).
Diffstat (limited to '2.0')
-rw-r--r--2.0/patches/10_all_buildconf-LC_ALL.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/2.0/patches/10_all_buildconf-LC_ALL.patch b/2.0/patches/10_all_buildconf-LC_ALL.patch
new file mode 100644
index 0000000..fe7498b
--- /dev/null
+++ b/2.0/patches/10_all_buildconf-LC_ALL.patch
@@ -0,0 +1,22 @@
+--- srclib/apr-util/buildconf.orig 2006-11-11 20:20:40.000000000 -0500
++++ srclib/apr-util/buildconf 2006-11-11 20:21:07.000000000 -0500
+@@ -8,7 +8,7 @@
+ do
+ # Normalize
+ case "$1" in
+- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
++ -*=*) optarg=`export LC_ALL=C; echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+
+--- buildconf.orig 2006-11-11 20:20:36.000000000 -0500
++++ buildconf 2006-11-11 20:21:21.000000000 -0500
+@@ -29,7 +29,7 @@
+ do
+ # Normalize
+ case "$1" in
+- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
++ -*=*) optarg=`export LC_ALL=C; echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+