This is the mail archive of the mauve-patches@sourceware.org mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: configure option name change


At Tom Fitzsimmon's request, the --enable-auto-compile option has been
changed to
--enable-auto-compilation.

2006-04-26  Anthony Balkissoon  <abalkiss@redhat.com>

	* Harness.java: Changed reference to --disable-auto-compile to 
	--disable-auto-compilation.
	* configure: Regenerated.
	* configure.in: Changed --enabled-auto-compile option to 
	--enable-auto-compilation.

--Tony
Index: Harness.java
===================================================================
RCS file: /cvs/mauve/mauve/Harness.java,v
retrieving revision 1.4
diff -u -r1.4 Harness.java
--- Harness.java	26 Apr 2006 18:11:11 -0000	1.4
+++ Harness.java	26 Apr 2006 18:37:51 -0000
@@ -581,7 +581,7 @@
       "See the README file for more details.\n" +      
       "  -compile [yes|no]:       specify whether or not to compile the " +
       "tests before running them.  This" + align + "overrides the configure" +
-      "option --disable-auto-compile but requires an ecj jar" + align + 
+      "option --disable-auto-compilation but requires an ecj jar" + align + 
       "to be in /usr/share/java/eclipse-ecj.jar or specified via the " +
       "--with-ecj-jar" + align + "option to configure.  See the README" +
       " file for more details.\n" +      
Index: configure.in
===================================================================
RCS file: /cvs/mauve/mauve/configure.in,v
retrieving revision 1.16
diff -u -r1.16 configure.in
--- configure.in	26 Apr 2006 18:11:11 -0000	1.16
+++ configure.in	26 Apr 2006 18:37:52 -0000
@@ -43,9 +43,9 @@
 dnl chance of producing meaningful results.  If it were enabled
 dnl by default many tests would fail because the compiler wouldn't
 dnl have the correct bootclasspath
-AC_ARG_ENABLE(auto-compile,
-[  --enable-auto-compile            Use ecj to compile tests on the fly],
-AUTO_COMPILE="$enable_auto_compile",AUTO_COMPILE="yes")
+AC_ARG_ENABLE(auto-compilation,
+[  --enable-auto-compilation            Use ecj to compile tests on the fly],
+AUTO_COMPILE="$enable_auto_compilation",AUTO_COMPILE="yes")
 AC_SUBST(AUTO_COMPILE)
 
 dnl See if the user prefers to build .class files with gcj, or whether

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]