diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 12:24:45 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 12:24:45 +0200 |
commit | 4995b4a7eebe3b9cd620b094cba5fbdc02c2f042 (patch) | |
tree | 63a123e7400cb43d82f1bc2a4ba1f3d0d6f5b8c3 /configure.ac | |
parent | c0db499f36439269c81c0d83fc4655502985bbc5 (diff) | |
download | fetchmail-4995b4a7eebe3b9cd620b094cba5fbdc02c2f042.tar.gz fetchmail-4995b4a7eebe3b9cd620b094cba5fbdc02c2f042.tar.bz2 fetchmail-4995b4a7eebe3b9cd620b094cba5fbdc02c2f042.zip |
Avoid compiling empty C files if NTLM is disabled.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c768244f..37103116 100644 --- a/configure.ac +++ b/configure.ac @@ -443,6 +443,7 @@ AC_ARG_ENABLE(NTLM, [with_NTLM=$enableval], [with_NTLM=no]) test "$with_NTLM" = "yes" && AC_DEFINE(NTLM_ENABLE,1,Define if you want NTLM authentication) +AM_CONDITIONAL(NTLM_ENABLE, test "$with_NTLM" = yes) ### use option --enable-SDPS to compile in the SDPS support AC_ARG_ENABLE(SDPS, |