jim 99/07/10 11:27:27
Modified: . configure
src CHANGES
Log:
Make configure SysV tr happy. Also, some typos :)
Revision Changes Path
1.94 +5 -5 apache-1.3/configure
Index: configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/configure,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- configure 1999/06/17 17:44:59 1.93
+++ configure 1999/07/10 18:27:25 1.94
@@ -714,8 +714,8 @@
esac
case "$apc_feature" in
rule )
- apc_optarg=`echo "$apc_optarg" | tr "A-Z" "a-z"`
- apc_optarg_real=`echo "$apc_optarg" | tr "a-z" "A-Z"`
+ apc_optarg=`echo "$apc_optarg" | tr '[A-Z]' '[a-z]'`
+ apc_optarg_real=`echo "$apc_optarg" | tr '[a-z]' '[A-Z]'`
eval "exists=\$rule_${apc_optarg}"
if [ "x$exists" = "x" ]; then
echo "configure:Error: No such rule named
'${apc_optarg_real}'" 1>&2
@@ -809,8 +809,8 @@
esac
case "$apc_feature" in
rule )
- apc_optarg=`echo "$apc_optarg" | tr "A-Z" "a-z"`
- apc_optarg_real=`echo "$apc_optarg" | tr "a-z" "A-Z"`
+ apc_optarg=`echo "$apc_optarg" | tr '[A-Z]' '[a-z]'`
+ apc_optarg_real=`echo "$apc_optarg" | tr '[a-z]' '[A-Z]'`
eval "exists=\$rule_${apc_optarg}"
if [ "x$exists" = "x" ]; then
echo "configure:Error: No such rule named
'${apc_optarg_real}'" 1>&2
@@ -1274,7 +1274,7 @@
OIFS="$IFS"
IFS=':'
for rule in $rules; do
- name="`echo $rule | tr "a-z" "A-Z"`"
+ name="`echo $rule | tr '[a-z]' '[A-Z]'`"
eval "val=\$rule_$rule"
echo $SEO "s%^\\(Rule $name=\\).*%\\1$val%g" >>$sedsubst
if [ "x$verbose" = "xyes" ]; then
1.1396 +6 -3 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1395
retrieving revision 1.1396
diff -u -r1.1395 -r1.1396
--- CHANGES 1999/07/09 21:44:23 1.1395
+++ CHANGES 1999/07/10 18:27:26 1.1396
@@ -1,5 +1,8 @@
Changes with Apache 1.3.7
+ *) Fix 'configure' to work correctly with SysV-based versions of
+ 'tr' (consistent with Configure's use as well). [Jim Jagielski]
+
*) apxs: Add "-S var=val" option which allows for override of CFG_*
built-in values. Add "-e" option which works like -i but doesn't
install the DSO; useful for editing httpd.conf with apxs. Fix
@@ -220,7 +223,7 @@
[Graham Leggett <[EMAIL PROTECTED]>,
Tim Costello <[EMAIL PROTECTED]>] PR#3178
- *) Fix inconsistant error messages reported by mod_proxy.
+ *) Fix inconsistent error messages reported by mod_proxy.
[Graham Leggett <[EMAIL PROTECTED]>]
*) OS/2: Fix terminating CGIs that aren't compiled by EMX GCC when a
@@ -698,7 +701,7 @@
and check to see if the tar we wind up with supports '-h'.
[Jim Jagielski] PR#3671
- *) A consistant and conservative style for all shell scripts has been
+ *) A consistent and conservative style for all shell scripts has been
implemented. Basically, all shell string tests use the traditional
hack of 'if [ "x$var" != "x" ]' or 'if [ "x$var" = "xstring" ]'
to protect against bare null variable strings (ie: wrapping both
@@ -2684,7 +2687,7 @@
*) PORT: IRIX needs the -n32 flag iff using the 'cc' compiler
[Jim Jagielski] PR#1901
- *) BUG: Configure was using TCC and CC inconsistantly. Make sure
+ *) BUG: Configure was using TCC and CC inconsistently. Make sure
Configure knows which CC we are using. [Jim Jagielski]
*) "Options +Includes" wasn't correctly merged if "+IncludesNoExec"