jim 99/05/25 05:24:45
Modified: src Configure
Log:
be consistant (and anal) ;)
Revision Changes Path
1.350 +3 -3 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.349
retrieving revision 1.350
diff -u -r1.349 -r1.350
--- Configure 1999/05/25 10:15:04 1.349
+++ Configure 1999/05/25 12:24:44 1.350
@@ -1570,18 +1570,18 @@
## Add in the Expat library if needed/wanted.
##
if [ -d ./lib/expat/ ]; then
- if [ "$RULE_EXPAT" = "default" ]; then
+ if [ "x$RULE_EXPAT" = "xdefault" ]; then
RULE_EXPAT=yes
fi
else
- if [ "$RULE_EXPAT" = "yes" ]; then
+ if [ "$xRULE_EXPAT" = "xyes" ]; then
echo "ERROR: RULE_EXPAT set to \"yes\" but is not available."
exit 1
else
RULE_EXPAT=no
fi
fi
-if [ "$RULE_EXPAT" = "yes" ]; then
+if [ "x$RULE_EXPAT" = "xyes" ]; then
EXPATLIB="lib/expat/libexpat.a"
APLIBDIRS="expat $APLIBDIRS"
CFLAGS="$CFLAGS -DUSE_EXPAT -I\$(SRCDIR)/lib/expat"