[mapguide-commits] r7381 - branches/2.5/MgDev

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu Feb 21 05:21:51 PST 2013


Author: jng
Date: 2013-02-21 05:21:51 -0800 (Thu, 21 Feb 2013)
New Revision: 7381

Modified:
   branches/2.5/MgDev/build_oem.sh
Log:
#2212: Port over build_cppunit()

Modified: branches/2.5/MgDev/build_oem.sh
===================================================================
--- branches/2.5/MgDev/build_oem.sh	2013-02-21 12:34:46 UTC (rev 7380)
+++ branches/2.5/MgDev/build_oem.sh	2013-02-21 13:21:51 UTC (rev 7381)
@@ -317,7 +317,13 @@
 build_cppunit()
 {
     pushd CppUnit-1.9.14
-    sh ./configure --prefix="${INSTALLDIR}"
+    # Force regen of configure to cover our bases
+    aclocal -I config
+    libtoolize --copy --force
+    autoconf
+    automake --add-missing --copy --force-missing
+    # -ldl is to prevent undefined reference to dlsym/dlopen/dlclose
+    sh ./configure --prefix="${INSTALLDIR}" LDFLAGS="-ldl"
     make
     check_build
     popd



More information about the mapguide-commits mailing list