masqmail-0.2
changeset 154:4917e764f108
Fix handling of --with-liblockfile=no or --without-liblockfile
thanks to Nico R.
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 11:48:59 +0200 |
parents | 15b3c71254cb |
children | dbe3dadd1afe |
files | configure configure.ac |
diffstat | 2 files changed, 6 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- a/configure Wed Jul 14 00:54:28 2010 +0200 1.2 +++ b/configure Wed Jul 14 11:48:59 2010 +0200 1.3 @@ -5374,6 +5374,9 @@ 1.4 withval=$with_liblockfile; 1.5 fi 1.6 1.7 +if test "x$with_liblockfile" = 'xno'; then 1.8 + with_liblockfile='' 1.9 +fi 1.10 if test "x$with_liblockfile" != 'x'; then 1.11 with_liblockfile='yes' 1.12 fi
2.1 --- a/configure.ac Wed Jul 14 00:54:28 2010 +0200 2.2 +++ b/configure.ac Wed Jul 14 11:48:59 2010 +0200 2.3 @@ -232,6 +232,9 @@ 2.4 AC_ARG_WITH(liblockfile, 2.5 [ --with-liblockfile use liblock (for Debian)], 2.6 ) 2.7 +if test "x$with_liblockfile" = 'xno'; then 2.8 + with_liblockfile='' 2.9 +fi 2.10 if test "x$with_liblockfile" != 'x'; then 2.11 with_liblockfile='yes' 2.12 fi