add --enable-nntp switch. default is no.
2001-01-16 Chris Toshok <toshok@helixcode.com> * configure.in: add --enable-nntp switch. default is no. svn path=/trunk/; revision=7549
This commit is contained in:
committed by
Chris Toshok
parent
5179437ab2
commit
d9287d3d32
@ -1,3 +1,7 @@
|
||||
2001-01-16 Chris Toshok <toshok@helixcode.com>
|
||||
|
||||
* configure.in: add --enable-nntp switch. default is no.
|
||||
|
||||
2001-01-16 Dan Winship <danw@ximian.com>
|
||||
|
||||
* configure.in, acconfig.h: Add --with-x-mailer to set the version
|
||||
|
||||
14
configure.in
14
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
|
||||
|
||||
Reference in New Issue
Block a user