changeset in /hg/icedtea6: Fix use of --enable options.
Andrew John Hughes
gnu_andrew at member.fsf.org
Mon Oct 20 04:25:41 PDT 2008
changeset a4df7fa32706 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=a4df7fa32706
description:
Fix use of --enable options.
2008-10-20 Alon Bar-Lev <alon.barlev at gmail.com>
PR icedtea/224:
* configure.ac:
Correct use of --enable options.
diffstat:
3 files changed, 16 insertions(+), 3 deletions(-)
ChangeLog | 6 ++++++
THANKYOU | 7 +++++++
configure.ac | 6 +++---
diffs (52 lines):
diff -r 6cc69d786ebb -r a4df7fa32706 ChangeLog
--- 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-19 Matthias Klose <doko at ubuntu
+2008-10-20 Alon Bar-Lev <alon.barlev at gmail.com>
+
+ PR icedtea/224:
+ * configure.ac:
+ Correct use of --enable options.
+
2008-10-19 Matthias Klose <doko at ubuntu.com>
* Makefile.am (jtregcheck): Cleanup processes.
diff -r 6cc69d786ebb -r a4df7fa32706 THANKYOU
--- /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 at gmail.com)
diff -r 6cc69d786ebb -r a4df7fa32706 configure.ac
--- 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],
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],
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"
More information about the distro-pkg-dev
mailing list