[kaffe] CVS kaffe (dalibor): Renamed --with-gjdoc to --enable-gjdoc
Kaffe CVS
cvs-commits at kaffe.org
Fri Sep 17 16:23:51 PDT 2004
PatchSet 5181
Date: 2004/09/17 23:19:36
Author: dalibor
Branch: HEAD
Tag: (none)
Log:
Renamed --with-gjdoc to --enable-gjdoc
2004-09-17 Dalibor Topic <robilad at kaffe.org>
* configure.ac:
Use --enable-gjdoc instead of --with-gjdoc.
* configure: Regenerated.
Reported by: Kiyo Inaba <inaba at src.ricoh.co.jp>
Members:
ChangeLog:1.2736->1.2737
configure:1.384->1.385
configure.ac:1.81->1.82
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2736 kaffe/ChangeLog:1.2737
--- kaffe/ChangeLog:1.2736 Fri Sep 17 21:01:57 2004
+++ kaffe/ChangeLog Fri Sep 17 23:19:36 2004
@@ -1,5 +1,14 @@
2004-09-17 Dalibor Topic <robilad at kaffe.org>
+ * configure.ac:
+ Use --enable-gjdoc instead of --with-gjdoc.
+
+ * configure: Regenerated.
+
+ Reported by: Kiyo Inaba <inaba at src.ricoh.co.jp>
+
+2004-09-17 Dalibor Topic <robilad at kaffe.org>
+
* libraries/javalib/gnu/xml/aelfred2/JAXPFactory.java,
libraries/javalib/gnu/xml/aelfred2/SAXDriver.java,
libraries/javalib/gnu/xml/aelfred2/XmlParser.java,
Index: kaffe/configure
diff -u kaffe/configure:1.384 kaffe/configure:1.385
--- kaffe/configure:1.384 Thu Sep 16 21:01:53 2004
+++ kaffe/configure Fri Sep 17 23:19:37 2004
@@ -1094,6 +1094,7 @@
--enable-libxmlj Enable building of libxmlj
--disable-xmltest Do not try to compile and run a test LIBXML program
--disable-xslttest Do not try to compile and run a test LIBXSLT program
+ --enable-gjdoc Enable building of gjdoc
--enable-binreloc compile with binary relocation support
(default=enable when available)
@@ -1158,7 +1159,6 @@
--with-xml-exec-prefix=PFX Exec prefix where libxml is installed (optional)
--with-xslt-prefix=PFX Prefix where libxslt is installed (optional)
--with-xslt-exec-prefix=PFX Exec prefix where libxslt is installed (optional)
- --with-gjdoc Enable building of gjdoc
--with-rt-jar=ABS.PATH use precompiled kaffe class library
--with-jni-library-path=dir
additional directories to search for native jni
@@ -55571,16 +55571,15 @@
-
-# Check whether --with-gjdoc or --without-gjdoc was given.
-if test "${with_gjdoc+set}" = set; then
- withval="$with_gjdoc"
+# Check whether --enable-gjdoc or --disable-gjdoc was given.
+if test "${enable_gjdoc+set}" = set; then
+ enableval="$enable_gjdoc"
fi;
-if test x"$with_gjdoc" = x"yes"; then
+if test x"$enable_gjdoc" = x"yes"; then
COND_GJDOC_TRUE=
COND_GJDOC_FALSE='#'
else
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.81 kaffe/configure.ac:1.82
--- kaffe/configure.ac:1.81 Thu Sep 16 21:01:56 2004
+++ kaffe/configure.ac Fri Sep 17 23:19:44 2004
@@ -1891,11 +1891,11 @@
dnl Building of gjdoc
dnl -------------------------------------------------------------------------
-AC_ARG_WITH([gjdoc],
- AS_HELP_STRING([--with-gjdoc],
+AC_ARG_ENABLE([gjdoc],
+ AS_HELP_STRING([--enable-gjdoc],
[Enable building of gjdoc]))
-AM_CONDITIONAL([COND_GJDOC], [test x"$with_gjdoc" = x"yes"])
+AM_CONDITIONAL([COND_GJDOC], [test x"$enable_gjdoc" = x"yes"])
dnl -----------------------------------------------------------------------
dnl Support for using a precompiled class library
More information about the kaffe
mailing list