diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2007-05-31 10:40:31 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2007-05-31 10:40:31 +0000 |
commit | 6b3fb4e176b69e6eb28633ef160bf8aa20edb888 (patch) | |
tree | 10d32a73832ad347f86d629bfa9945ecfdf4de18 /www | |
parent | Update to 1.86. (diff) |
- fix build for custom locales
PR: 96703
Notes
Notes:
svn path=/head/; revision=192466
Diffstat (limited to 'www')
-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" |