diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | acconfig.h | 1 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,13 @@ +2001-01-29 Eskil Heyn Olsen <eskil@eazel.com> + + reviewed by: JP Rosevear <jpr@ximian.com> + + * acconfig.h: + Added the ENABLE_NNTP define + + * configure.in: + Fixed the NNTP m4 section. + 2001-01-29 Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz> * configure.in: added sk to ALL_LINGUAS. diff --git a/acconfig.h b/acconfig.h index 9926571580..4ba785d582 100644 --- a/acconfig.h +++ b/acconfig.h @@ -22,6 +22,7 @@ #undef USE_FLOCK #undef NEED_KRB_SENDAUTH_PROTO #undef HAVE_ISBLANK +#undef ENABLE_NNTP /* Sub-version identification string. */ #undef SUB_VERSION diff --git a/configure.in b/configure.in index 91c3d4cb58..f6a580fcc8 100644 --- a/configure.in +++ b/configure.in @@ -167,7 +167,7 @@ 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) + AC_DEFINE(ENABLE_NNTP) msg_nntp=Yes else msg_nntp=No |