From 1d4f343b06b2839d28424cfe7843a7ab8c7344ac Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Thu, 13 Feb 2003 08:22:14 +0000 Subject: [PATCH 1/1] show which plugins are configured in the configure output --- ChangeLog.claws | 6 ++++++ configure.ac | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 9c5d2a001..bcd842262 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2003-02-13 [paul] 0.8.10claws5 + + * configure.ac + show which plugins are configured in the configure + output. + 2003-02-12 [thorsten] 0.8.10claws4 * src/news.c diff --git a/configure.ac b/configure.ac index 86aa4af42..a2b3df6fb 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=10 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws4 +EXTRA_VERSION=claws5 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target @@ -370,6 +370,9 @@ AC_ARG_ENABLE(demo-plugin, [ --enable-demo-plugin Build demo plugin [default=no]], [ac_cv_enable_demo_plugin=$enableval], [ac_cv_enable_demo_plugin=no]) AM_CONDITIONAL(BUILD_DEMO_PLUGIN, test x"$ac_cv_enable_demo_plugin" = xyes) +if test x"$ac_cv_enable_demo_plugin" = xyes; then + PLUGINS="demo $PLUGINS" +fi AC_ARG_ENABLE(spamassassin-plugin, [ --enable-spamassassin-plugin Build spamassassin plugin [default=no]], @@ -377,6 +380,7 @@ AC_ARG_ENABLE(spamassassin-plugin, AM_CONDITIONAL(BUILD_SPAMASSASSIN_PLUGIN, test x"$ac_cv_enable_spamassassin_plugin" = xyes) if test x"$ac_cv_enable_spamassassin_plugin" = xyes; then AC_SPAMASSASSIN + PLUGINS="spamassassin $PLUGINS" fi dnl **************************** -- 2.25.1