diff options
author | dinoex <dinoex@FreeBSD.org> | 2007-05-31 18:40:31 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2007-05-31 18:40:31 +0800 |
commit | 4265ff90c598a63a4fa1a0d7844c433c3f4f795d (patch) | |
tree | 4f57facd17a05f75265adc52e181f818d554383a /www/apache13-modssl | |
parent | 876ab37e95c3b35b40192eb2d765b4306f2183c1 (diff) | |
download | freebsd-ports-gnome-4265ff90c598a63a4fa1a0d7844c433c3f4f795d.tar.gz freebsd-ports-gnome-4265ff90c598a63a4fa1a0d7844c433c3f4f795d.tar.zst freebsd-ports-gnome-4265ff90c598a63a4fa1a0d7844c433c3f4f795d.zip |
- fix build for custom locales
PR: 96703
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/files/patch-Configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/apache13-modssl/files/patch-Configure b/www/apache13-modssl/files/patch-Configure new file mode 100644 index 000000000000..3ff19d74763e --- /dev/null +++ b/www/apache13-modssl/files/patch-Configure @@ -0,0 +1,13 @@ +--- src/Configure.orig Thu May 31 12:16:27 2007 ++++ src/Configure Thu May 31 12:20:30 2007 +@@ -968,8 +968,8 @@ + + for uppercase in "tr [a-z] [A-Z]" "tr [:lower:] [:upper:]" "sed y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/" + do +- case `echo Apache | $uppercase` in +- APACHE) break;; ++ case `echo abcdefghijklmnopqrstuvwxyz | $uppercase` in ++ ABCDEFGHIJKLMNOPQRSTUVWXYZ) break;; + esac + done + echo " + using \"$uppercase\" to uppercase" |