corrected typo
authoraland <aland>
Sun, 20 Apr 2008 15:14:02 +0000 (15:14 +0000)
committeraland <aland>
Sun, 20 Apr 2008 15:14:02 +0000 (15:14 +0000)
configure
configure.in

index 0ce0935..e95b611 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.259 .
+# From configure.in Revision: 1.260 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61.
 #
@@ -19720,7 +19720,7 @@ fi
 if test "x$WITH_VMPS" = "xyes"; then
 
 cat >>confdefs.h <<\_ACEOF
-#define WITH_VMPS
+#define WITH_VMPS 1
 _ACEOF
 
 fi
@@ -19732,9 +19732,10 @@ if test "${with_dhcp+set}" = set; then
     yes)
 
 cat >>confdefs.h <<\_ACEOF
-#define WITH_DHCP
+#define WITH_DHCP 1
 _ACEOF
 
+       ;;
     *)
        ;;
   esac
index 73e5e19..fa8905a 100644 (file)
@@ -259,7 +259,7 @@ AC_ARG_WITH(vmps,
   esac ]
 )
 if test "x$WITH_VMPS" = "xyes"; then
-       AC_DEFINE(WITH_VMPS, [], [define if you want VMPS support])
+       AC_DEFINE(WITH_VMPS, [1], [define if you want VMPS support])
 fi
 
 dnl extra argument: --with-dhcp
@@ -267,7 +267,8 @@ AC_ARG_WITH(dhcp,
 [  --with-dhcp             Compile in DHCP support. (default=no)],
 [ case "$withval" in
     yes)
-        AC_DEFINE(WITH_DHCP, [], [Include experimental support for DHCP])
+        AC_DEFINE(WITH_DHCP, [1], [Include experimental support for DHCP])
+       ;;
     *)
        ;;
   esac ]