changeset 1132:a4df7fa32706

Fix use of --enable options. 2008-10-20 Alon Bar-Lev <alon.barlev@gmail.com> PR icedtea/224: * configure.ac: Correct use of --enable options.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Mon, 20 Oct 2008 11:05:12 +0100
parents 6cc69d786ebb
children 1fddd063617e
files ChangeLog THANKYOU configure.ac
diffstat 3 files changed, 16 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Oct 19 18:06:54 2008 +0200
+++ b/ChangeLog	Mon Oct 20 11:05:12 2008 +0100
@@ -1,3 +1,9 @@
+2008-10-20  Alon Bar-Lev  <alon.barlev@gmail.com>
+
+	PR icedtea/224:
+	* configure.ac:
+	Correct use of --enable options.
+	
 2008-10-19  Matthias Klose  <doko@ubuntu.com>
 
 	* Makefile.am (jtregcheck): Cleanup processes.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/THANKYOU	Mon Oct 20 11:05:12 2008 +0100
@@ -0,0 +1,7 @@
+The following have made minor contributions to the IcedTea
+project, such as testing, bug submission, or minor patches. See also
+the AUTHORS file, which lists people who have submitted major
+patches. If your name does not appear on either list, but should, let
+us know. Please keep this list in alphabetic order.
+
+Alon Bar-Lev (alon.barlev@gmail.com)
--- a/configure.ac	Sun Oct 19 18:06:54 2008 +0200
+++ b/configure.ac	Mon Oct 20 11:05:12 2008 +0100
@@ -125,13 +125,13 @@
 AC_ARG_ENABLE([gcjwebplugin],
               [AS_HELP_STRING([--enable-gcjwebplugin],
                               [Build the GCJ Web Plugin plugin (deprecated)])],
-              [enable_gcjwebplugin="yes"], [enable_gcjwebplugin="no"])
+              [enable_gcjwebplugin="${enableval}"], [enable_gcjwebplugin="no"])
 AM_CONDITIONAL(ENABLE_GCJWEBPLUGIN, test "x${enable_gcjwebplugin}" = "xyes")
 
 AC_ARG_ENABLE([pulse-java],
               [AS_HELP_STRING([--enable-pulse-java],
                               [Enable pulse-java - an audio mixer spi that uses PulseAudio])],
-              [enable_pulse_java="yes"], [enable_pulse_java="no"])
+              [enable_pulse_java="${enableval}"], [enable_pulse_java="no"])
 AM_CONDITIONAL(ENABLE_PULSE_JAVA, test "x${enable_pulse_java}" = "xyes")
 
 AC_ARG_ENABLE([docs],
@@ -143,7 +143,7 @@
 AC_ARG_ENABLE([visualvm],
               [AS_HELP_STRING([--enable-visualvm],
 			                  [Enable compilation of visualvm.])],
-              [enable_visualvm="yes"], [enable_visualvm="no"])
+              [enable_visualvm="${enableval}"], [enable_visualvm="no"])
 AM_CONDITIONAL(WITH_VISUALVM, test "x${enable_visualvm}" = "xyes")
 
 if test "x${enable_visualvm}" = "xyes"