Commit 2d29f3a1 by Anthony Green Committed by Anthony Green

Fix USE_LDTL configury.

From-SVN: r69864
parent 66db6b62
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:
......
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment