diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-14 07:38:02 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-14 07:38:02 +0000 |
commit | 04e293356472e13c75636bec4947c1c564339d3b (patch) | |
tree | 93c048526c8a063682985863febf2066b7902d0e /configure.in | |
parent | 582eb25eccedcdbff029947f777a111a9b7008af (diff) | |
download | fetchmail-04e293356472e13c75636bec4947c1c564339d3b.tar.gz fetchmail-04e293356472e13c75636bec4947c1c564339d3b.tar.bz2 fetchmail-04e293356472e13c75636bec4947c1c564339d3b.zip |
NTLM support integrated.
svn path=/trunk/; revision=2554
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 642d45e9..ace29821 100644 --- a/configure.in +++ b/configure.in @@ -262,6 +262,13 @@ AC_ARG_ENABLE(RPA, [with_RPA=no]) test "$with_RPA" = "yes" && AC_DEFINE(RPA_ENABLE) +### use option --enable-NTLM to compile in the NTLM support +AC_ARG_ENABLE(NTLM, + [ --enable-NTLM compile in NTLM authentication support], + [with_NTLM=$enableval], + [with_NTLM=no]) +test "$with_NTLM" = "yes" && AC_DEFINE(NTLM_ENABLE) + ### use option --enable-SDPS to compile in the SDPS support AC_ARG_ENABLE(SDPS, [ --enable-SDPS compile in SDPS protocol support], |