* configure.in (libgcj_saved): Copy from $libgcj.
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 25 Apr 2001 21:41:21 +0000 (21:41 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 25 Apr 2001 21:41:21 +0000 (21:41 +0000)
(libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
--disable-libgcj.

ChangeLog
configure.in

index d67505415d5194030e21a4f42ba444a28ecfabfd..4f9a01820bb4d43aacb10481a09a7ed65a941c2f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-04-25  Alexandre Oliva  <aoliva@redhat.com>
+
+       * configure.in (libgcj_saved): Copy from $libgcj.
+       (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
+       --disable-libgcj.
+
 2001-04-20  Alexandre Oliva  <aoliva@redhat.com>
 
        * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
index cc8f34f879530af81a357aeb9e646c646eb61121..d5db06585780fe0d06eb435033e802a07564c77c 100644 (file)
@@ -572,6 +572,22 @@ case "${host}" in
 esac
 
 
+# Save it here so that, even in case of --enable-libgcj, if the Java
+# front-end isn't enabled, we still get libgcj disabled.
+libgcj_saved=$libgcj
+case $enable_libgcj in
+yes)
+  # If we reset it here, it won't get added to noconfigdirs in the
+  # target-specific build rules, so it will be forcibly enabled
+  # (unless the Java language itself isn't enabled).
+  libgcj=
+  ;;
+no)
+  # Make sure we get it printed in the list of not supported target libs.
+  noconfigdirs="$noconfigdirs ${libgcj}"
+  ;;
+esac
+
 case "${target}" in
   *-*-netware)
     noconfigdirs="$noconfigdirs ${libstdcxx_version} target-newlib target-libiberty target-libgloss target-libffi"
This page took 0.030328 seconds and 4 git commands to generate.