Trying to remove the (unused) dependence on mysql.
authorKevin Webb <kcwebb@ucsd.edu>
Tue, 21 Oct 2008 00:59:18 +0000 (00:59 +0000)
committerKevin Webb <kcwebb@ucsd.edu>
Tue, 21 Oct 2008 00:59:18 +0000 (00:59 +0000)
configure.in

index 7504e21..2f888fb 100644 (file)
@@ -65,6 +65,10 @@ dnl test for MySQL
 dnl
 AC_ARG_WITH(mysql,
  --with-mysql=<directory>              mysql installed in <directory>,[
+if test $withval == no
+then
+    AC_MSG_WARN("mysql disabled.")
+else
 if test $withval != yes
 then
         dir=$withval
@@ -122,7 +126,8 @@ else
                AC_MSG_RESULT(found new MySQL)
        fi
 
-fi      
+fi
+fi
 ])