]> gcc.gnu.org Git - gcc.git/commitdiff
Fix USE_LDTL configury.
authorAnthony Green <green@redhat.com>
Sun, 27 Jul 2003 23:52:57 +0000 (23:52 +0000)
committerAnthony Green <green@gcc.gnu.org>
Sun, 27 Jul 2003 23:52:57 +0000 (23:52 +0000)
From-SVN: r69864

libjava/ChangeLog
libjava/configure
libjava/configure.in

index 76e330cf3806a8e23aa9a81dd599b21f948cccb2..f7d6e0de3223a2f6170e9e585e7cd469f7d77081 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-27  Anthony Green  <green@redhat.com>
+
+       * configure.in: Fix newlib check.
+       * configure: Rebuilt.
+
 2003-07-27  Thomas Fitzsimmons  <fitzsim@redhat.com>
 
        * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.c:
index 157944e16367a3900efa717937994cd980262450..baa3b268300f2aff8fa73ff98ff7af2f0c3acb76 100755 (executable)
@@ -1707,7 +1707,7 @@ LIBGCJ_JAVAFLAGS="${libgcj_javaflags}"
 
 
 # Only use libltdl for non-newlib builds.
-if test "x${with_newlib}" = "xno"; then
+if test "x${with_newlib}" = "x" || test "x${with_newlib}" = "xno"; then
      case $enable_ltdl_convenience in
   no) { echo "configure: error: this package needs a convenience libltdl" 1>&2; exit 1; } ;;
   "") enable_ltdl_convenience=yes
index d7eaf7692461114cec435612bed8b1ec755cae76..d57b77953bc08fd25b4b665f8b4f7cde30f6ef74 100644 (file)
@@ -24,7 +24,7 @@ LIBGCJ_CONFIGURE(.)
 AM_CONFIG_HEADER(include/config.h gcj/libgcj-config.h)
 
 # Only use libltdl for non-newlib builds.
-if test "x${with_newlib}" = "xno"; then
+if test "x${with_newlib}" = "x" || test "x${with_newlib}" = "xno"; then
    AC_LIBLTDL_CONVENIENCE
    AC_LIBTOOL_DLOPEN
    DIRLTDL=libltdl
This page took 0.081886 seconds and 5 git commands to generate.