aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-11-03 22:49:47 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-11-03 22:49:47 +0800
commit5bf688e509c4c2325e731c8d397568ba4896e0b5 (patch)
tree80d7c6ce92fc87ce228616953e05502b3ada4c48
parent0c9192a76c44a74b1a8d79c33dd5d8e25ab82d11 (diff)
downloadgsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar.gz
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar.bz2
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar.lz
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar.xz
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.tar.zst
gsoc2013-evolution-5bf688e509c4c2325e731c8d397568ba4896e0b5.zip
handle plain --enable-plugins and --enable-plugins=yes by making it the
2004-11-03 JP Rosevear <jpr@novell.com> * configure.in: handle plain --enable-plugins and --enable-plugins=yes by making it the equivalent of "all" svn path=/trunk/; revision=27825
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ea2689111a..0a0fb85224 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-03 JP Rosevear <jpr@novell.com>
+
+ * configure.in: handle plain --enable-plugins and
+ --enable-plugins=yes by making it the equivalent of "all"
+
2004-11-03 Not Zed <NotZed@Ximian.com>
* configure.in: added plugin-manager plugin.
diff --git a/configure.in b/configure.in
index db5e0945e0..7a99d038ee 100644
--- a/configure.in
+++ b/configure.in
@@ -1346,12 +1346,13 @@ if test x"$enable_plugins" = "xno"; then
plugins_enabled=""
msg_plugins="no"
else
- if test x"$enable_plugins" = "xall"; then
+ if test x"$enable_plugins" = "xyes" | test x"$enable_plugins" = "xall"; then
plugins_enabled="$plugins_all"
+ msg_plugins="yes (all)"
else
plugins_enabled="$enable_plugins"
+ msg_plugins="yes ($enable_plugins)"
fi
- msg_plugins="$enable_plugins"
fi
AC_SUBST(plugins_enabled)
AC_SUBST(plugins_all)