From: Kevin Webb Date: Tue, 21 Oct 2008 00:59:18 +0000 (+0000) Subject: Trying to remove the (unused) dependence on mysql. X-Git-Tag: DistributedRateLimiting-0.1-0~50 X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=commitdiff_plain;h=90af793705b8b19373f7deb159011b8afcfc8b6f Trying to remove the (unused) dependence on mysql. --- diff --git a/configure.in b/configure.in index 7504e21..2f888fb 100644 --- a/configure.in +++ b/configure.in @@ -65,6 +65,10 @@ dnl test for MySQL dnl AC_ARG_WITH(mysql, --with-mysql= mysql installed in ,[ +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 ])