diff options
author | Eskil Heyn Olsen <eskil@src.gnome.org> | 2001-01-30 09:44:01 +0800 |
---|---|---|
committer | Eskil Heyn Olsen <eskil@src.gnome.org> | 2001-01-30 09:44:01 +0800 |
commit | 2025fe8849e4b86dbbd9074c609a32393fca49f6 (patch) | |
tree | 65bdb3bda61cb39c7431005767450e02fbab87ed | |
parent | 24cce77925ec825d985b49234850c38c230d1b19 (diff) | |
download | gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar.gz gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar.bz2 gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar.lz gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar.xz gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.tar.zst gsoc2013-evolution-2025fe8849e4b86dbbd9074c609a32393fca49f6.zip |
reviewed by: JP Rosevear <jpr@ximian.com>
reviewed by: JP Rosevear <jpr@ximian.com>
* acconfig.h:
Added the ENABLE_NNTP define
* configure.in:
Fixed the NNTP m4 section.
svn path=/trunk/; revision=7904
-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 |