*** empty log message ***
authorBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 6 Dec 2004 14:47:54 +0000 (14:47 +0000)
committerBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 6 Dec 2004 14:47:54 +0000 (14:47 +0000)
[r4576]

configure
configure.in

index 3c6f0d9..c4e9c0c 100755 (executable)
--- a/configure
+++ b/configure
@@ -832,7 +832,7 @@ Optional Features:
   --enable-heapanalysis       Compile with heap analysis.
   --disable-libiberty     disable own libiberty parts
   --enable-statistics     enable Firm statistics
-  --disable-effects       disable descriptions of external effects in XML
+  --disable-external-effects  disable descriptions of external effects in XML
 
 Optional Packages:
   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
@@ -1358,14 +1358,14 @@ echo $ECHO_N "checking for using external effects in xml2... $ECHO_C" >&6
 # Check whether --enable-external-effects or --disable-external-effects was given.
 if test "${enable_external_effects+set}" = set; then
   enableval="$enable_external_effects"
-  if test "$enableval"=no; then
+  if test "$enableval"="no"; then
   enable_external_effects=no
 fi
 else
   enable_external_effects=yes
 fi;
 
-if test "$enable_external_effects" == "no"; then
+if test "$enable_external_effects" == no; then
   echo "$as_me:$LINENO: result: disabled" >&5
 echo "${ECHO_T}disabled" >&6
 else
@@ -1374,7 +1374,6 @@ echo "${ECHO_T}enabled" >&6
 fi
 
 
-
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
index e687772..959bc0d 100644 (file)
@@ -133,20 +133,19 @@ dnl disable external effects in XML
 dnl -------------------------------
 AC_MSG_CHECKING([for using external effects in xml2])
 AC_ARG_ENABLE(external-effects,
-[  --disable-effects       disable descriptions of external effects in XML],
-[if test "$enableval"=no; then
+[  --disable-external-effects  disable descriptions of external effects in XML],
+[if test "$enableval"="no"; then
   enable_external_effects=no
 fi],
 [enable_external_effects=yes])
 AC_SUBST(enable_external_effects)
-if test "$enable_external_effects" == "no"; then
+if test "$enable_external_effects" == no; then
   AC_MSG_RESULT([disabled])
 else
   AC_MSG_RESULT([enabled])
 fi
 dnl check for header and library below
 
-
 dnl Checks for programs.
 dnl ====================