jim 98/07/12 06:32:51
Modified: src Configure
Log:
Oops... gotta recall that older (and esp. SysV-based) tr's require the
'[]' method. This works fine with BSD tr's since it maps the [ to [
and the ] to ]. Cover all bases.
Revision Changes Path
1.275 +1 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.274
retrieving revision 1.275
diff -u -r1.274 -r1.275
--- Configure 1998/07/11 10:24:05 1.274
+++ Configure 1998/07/12 13:32:50 1.275
@@ -1217,7 +1217,7 @@
echo "" >>$CONF_AUTO_H
for header in $CHECK_FOR_HEADERS; do
echo "/* <$header> */" >>$CONF_AUTO_H
- name="`echo $header | sed -e 's:/:_:g' -e 's:\.:_:g' | tr 'a-z' 'A-Z'`"
+ name="`echo $header | sed -e 's:/:_:g' -e 's:\.:_:g' | tr '[a-z]'
'[A-Z]'`"
if ./helpers/TestCompile header $header; then
eval "HAVE_${name}=1"
echo "#ifndef HAVE_${name}" >>$CONF_AUTO_H