diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:04:32 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:04:32 +0000 |
commit | cd5b84b42695f3a653df1e6692cf1bf5268a50f7 (patch) | |
tree | 775bf1b6cd060d4a6b1283f7b2935f8bb8329f06 /configure.ac | |
parent | 9dc0b8bd674f71f8ee422b037dc409f2dd4f9487 (diff) | |
download | fetchmail-cd5b84b42695f3a653df1e6692cf1bf5268a50f7.tar.gz fetchmail-cd5b84b42695f3a653df1e6692cf1bf5268a50f7.tar.bz2 fetchmail-cd5b84b42695f3a653df1e6692cf1bf5268a50f7.zip |
Disable SDPS if POP3 is disabled.
svn path=/branches/BRANCH_6-3/; revision=4735
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 38551962..4fb2f4e7 100644 --- a/configure.ac +++ b/configure.ac @@ -350,7 +350,14 @@ AC_ARG_ENABLE(SDPS, [ --enable-SDPS compile in SDPS protocol support], [with_SDPS=$enableval], [with_SDPS=no]) -test "$with_SDPS" = "yes" && AC_DEFINE(SDPS_ENABLE,1,Define if you want SDPS support compiled in) +if test "$with_SDPS" = yes ; then + if test "$with_POP3" != yes ; then + AC_MSG_WARN([SDPS cannot be enabled with POP3 disabled. Disabling SDPS.]) + with_SDPS=no + else + AC_DEFINE(SDPS_ENABLE,1,Define if you want SDPS support compiled in) + fi +fi ### use option --enable-opie to compile in the OPIE support AC_ARG_ENABLE(opie, |