diff options
author | Meilof Veeningen <meilof@wanadoo.nl> | 2004-01-13 06:26:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-13 06:26:59 +0800 |
commit | 1bca83044bcb3d5cfcb419fcd0a0bd6033324c3a (patch) | |
tree | 2f114c0e16ec7a698aab878fd44d3a5e62956c6a /configure.in | |
parent | 9cf4f01e829df62c534d695d42cc4a1f22b953bd (diff) | |
download | gsoc2013-evolution-1bca83044bcb3d5cfcb419fcd0a0bd6033324c3a.tar.gz gsoc2013-evolution-1bca83044bcb3d5cfcb419fcd0a0bd6033324c3a.tar.zst gsoc2013-evolution-1bca83044bcb3d5cfcb419fcd0a0bd6033324c3a.zip |
enable NNTP support by default
2004-01-12 Meilof Veeningen <meilof@wanadoo.nl>
* configure.in: enable NNTP support by default
svn path=/trunk/; revision=24184
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 736458f2db..28e2fba2ce 100644 --- a/configure.in +++ b/configure.in @@ -344,9 +344,9 @@ dnl ************************************************** dnl NNTP support. dnl ************************************************** AC_ARG_ENABLE(nntp, -[ --enable-nntp=[no/yes] Attempt to compile incomplete, unsupported NNTP code],,enable_nntp=no) +[ --enable-nntp=[no/yes] Build Usenet news (NNTP) backend],,enable_nntp=yes) if test "x$enable_nntp" = "xyes"; then - AC_DEFINE(ENABLE_NNTP,1,[Don't try this at home]) + AC_DEFINE(ENABLE_NNTP,1,[Build NNTP backend]) msg_nntp=yes else msg_nntp=no |