From d9287d3d323bc577b62ede013a47e4e39379b9a0 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Tue, 16 Jan 2001 23:17:51 +0000 Subject: add --enable-nntp switch. default is no. 2001-01-16 Chris Toshok * configure.in: add --enable-nntp switch. default is no. svn path=/trunk/; revision=7549 --- ChangeLog | 4 ++++ configure.in | 14 ++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6f9e3ef188..17e456fc74 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-01-16 Chris Toshok + + * configure.in: add --enable-nntp switch. default is no. + 2001-01-16 Dan Winship * configure.in, acconfig.h: Add --with-x-mailer to set the version diff --git a/configure.in b/configure.in index 081d1d6714..278a5ace25 100644 --- a/configure.in +++ b/configure.in @@ -161,6 +161,19 @@ else fi AM_CONDITIONAL(ENABLE_LDAP, test x$ac_cv_lib_ldap_ldap_open = xyes) +dnl ************************************************** +dnl NNTP support. +dnl ************************************************** +AC_ARG_ENABLE(nntp, +[ --enable-nntp=[no/yes] Enable NNTP support in evolution],,enable_nntp=no) +if test "x$enable_nntp" = "xyes"; then + AC_DEFINE (ENABLE_NNTP) + msg_nntp=Yes +else + msg_nntp=No +fi +AM_CONDITIONAL(ENABLE_NNTP, test x$enable_nntp = xyes) + dnl ************************************************** dnl * Posix thread support dnl ************************************************** @@ -712,6 +725,7 @@ echo " Mail Directory: $system_mail_dir LDAP support: $msg_ldap + NNTP support: $msg_nntp Pilot conduits: $msg_pilot Kerberos 4/5: $msg_krb4/$msg_krb5 Use movemail: $with_movemail -- cgit v1.2.3