Update of /cvsroot/blob/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv26435
Modified Files:
configure.in
Log Message:
only define vars if they weren't set before. Otherwise the
summary is wrong and thus confusing.
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- configure.in 15 Aug 2003 06:18:57 -0000 1.66
+++ configure.in 21 Aug 2003 00:26:44 -0000 1.67
@@ -739,9 +739,9 @@
dnl Initialize flags without --enable/--disable code:
-pcmcia_flag=no
-cf_flag=no
-ide_flag=no
+pcmcia_flag=${pcmcia_flag-no}
+cf_flag=${cf_flag-no}
+ide_flag=${ide_flag-no}
dnl Add C flags to display more warnings
AC_MSG_CHECKING(for C flags to get more warnings)
|