[MOAB-dev] r4233 - MOAB/trunk
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Fri Oct 22 11:13:20 CDT 2010
Author: kraftche
Date: 2010-10-22 11:13:20 -0500 (Fri, 22 Oct 2010)
New Revision: 4233
Modified:
MOAB/trunk/configure.ac
Log:
fix configure bug where we need libtool during configure but it isn't created until end of script for libtool 2.x.x
Modified: MOAB/trunk/configure.ac
===================================================================
--- MOAB/trunk/configure.ac 2010-10-22 13:02:07 UTC (rev 4232)
+++ MOAB/trunk/configure.ac 2010-10-22 16:13:20 UTC (rev 4233)
@@ -233,7 +233,16 @@
fi
AC_DEFINE_UNQUOTED(MB_VERSION_STRING,"${VERSION_STRING}",[MOAB Version String])
+################################################################################
+# Create libtool script
+################################################################################
+# We need the libtool script both for the calls to the ITAPS_LIBTOOL_VAR
+# macro and for us in testing for ACIS libraries. If we're using a newer
+# version of libtool, the script normally isn't generated until AC_OUTPUT
+# at the end of the configure script. Ask that it be created now instead.
+m4_ifdef([LT_OUTPUT],[LT_OUTPUT])
+
################################################################################
# Extract libtool config
################################################################################
More information about the moab-dev
mailing list