diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,7 +1,11 @@ 2004-11-03 JP Rosevear <jpr@novell.com> + * configure.in: fix the logic + +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" + --enable-plugins=yes by making it the equivalent of "all" 2004-11-03 Not Zed <NotZed@Ximian.com> diff --git a/configure.in b/configure.in index 7a99d038ee..c920a25a0a 100644 --- a/configure.in +++ b/configure.in @@ -1346,7 +1346,7 @@ if test x"$enable_plugins" = "xno"; then plugins_enabled="" msg_plugins="no" else - if test x"$enable_plugins" = "xyes" | test x"$enable_plugins" = "xall"; then + if test x"$enable_plugins" = "xyes" -o x"$enable_plugins" = "xall"; then plugins_enabled="$plugins_all" msg_plugins="yes (all)" else |