From 3090b6e12149535cb85df2f90d05c725937cde10 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 15 Jun 2002 10:25:52 +0000 Subject: [PATCH] Can now build shared libraries under BeOS, and probably Cygwin, too. --- configure.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.in b/configure.in index eeb94714..f0bc26d5 100644 --- a/configure.in +++ b/configure.in @@ -55,6 +55,7 @@ AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LN_S +AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL @@ -217,6 +218,8 @@ AM_CONDITIONAL(BUILD_ZLIB, test x$enable_internal_zlib = xyes) AM_CONDITIONAL(BUILD_TEST_PHYSFS, test x$enable_testprog = xyes) AM_CONDITIONAL(BUILD_BEOS_CPP, test x$this_is_beos = xyes) +LDFLAGS="$LDFLAGS -no-undefined" + AC_OUTPUT([ Makefile ])