|
From: <br...@us...> - 2009-07-03 19:31:19
|
Revision: 3942
http://openvrml.svn.sourceforge.net/openvrml/?rev=3942&view=rev
Author: braden
Date: 2009-07-03 19:31:03 +0000 (Fri, 03 Jul 2009)
Log Message:
-----------
Make BOOST_LIB_SUFFIX default to "-mt" if it is undefined.
Modified Paths:
--------------
trunk/ChangeLog
trunk/README
trunk/configure-gcc-dbg
trunk/configure-gcc-opt
trunk/configure.ac
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-07-03 15:52:51 UTC (rev 3941)
+++ trunk/ChangeLog 2009-07-03 19:31:03 UTC (rev 3942)
@@ -1,5 +1,12 @@
2009-07-03 Braden McDaniel <br...@en...>
+ * configure.ac: Make BOOST_LIB_SUFFIX default to "-mt" if it is
+ undefined.
+ * README: Change wording documenting BOOST_LIB_SUFFIX to indicate
+ that setting this variable may not be required.
+
+2009-07-03 Braden McDaniel <br...@en...>
+
* README: Use "sourceforge.net" in URIs instead of "sf.net".
2009-07-02 Braden McDaniel <br...@en...>
Modified: trunk/README
===================================================================
--- trunk/README 2009-07-03 15:52:51 UTC (rev 3941)
+++ trunk/README 2009-07-03 19:31:03 UTC (rev 3942)
@@ -147,7 +147,7 @@
Note that Boost binaries built from the boost.org distribution, as
well as some other distributions, apply a suffix to the library
name that depends on the particular build configuration. When
-building OpenVRML with such binaries it will be necessary to set the
+building OpenVRML with such binaries it may be necessary to set the
variable BOOST_LIB_SUFFIX to match the suffix applied to the Boost
binaries; refer to the output of "configure --help".
Modified: trunk/configure-gcc-dbg
===================================================================
--- trunk/configure-gcc-dbg 2009-07-03 15:52:51 UTC (rev 3941)
+++ trunk/configure-gcc-dbg 2009-07-03 19:31:03 UTC (rev 3942)
@@ -1,3 +1,3 @@
#!/bin/bash
-./$(dirname $0)/configure -C --prefix=$HOME --disable-static --enable-gtk-doc CXX='g++ -pipe' CPPFLAGS="-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC -DG_ERRORCHECK_MUTEXES -I$HOME/include" CXXFLAGS='-g3 -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers' LDFLAGS="-L$HOME/lib64 -L$HOME/lib" BOOST_LIB_SUFFIX='-mt' JAVA_HOME=/usr/lib/jvm/jre "$*"
+./$(dirname $0)/configure -C --prefix=$HOME --disable-static --enable-gtk-doc CXX='g++ -pipe' CPPFLAGS="-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC -DG_ERRORCHECK_MUTEXES -I$HOME/include" CXXFLAGS='-g3 -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers' LDFLAGS="-L$HOME/lib64 -L$HOME/lib" JAVA_HOME=/usr/lib/jvm/jre "$*"
Modified: trunk/configure-gcc-opt
===================================================================
--- trunk/configure-gcc-opt 2009-07-03 15:52:51 UTC (rev 3941)
+++ trunk/configure-gcc-opt 2009-07-03 19:31:03 UTC (rev 3942)
@@ -1,3 +1,3 @@
#!/bin/bash
-./$(dirname $0)/configure -C --prefix=$HOME --disable-static --enable-exception-specs=nothrow --enable-gtk-doc CXX='g++ -pipe' CPPFLAGS='-I$HOME/include -DNDEBUG' CXXFLAGS='-O3 -Wall -Wextra -Wno-missing-braces -Wno-unused-variable -fvisibility=hidden -fvisibility-inlines-hidden' LDFLAGS='-L$HOME/lib64 -L$HOME/lib' BOOST_LIB_SUFFIX=-mt JAVA_HOME=/usr/lib/jvm/jre "$*"
+./$(dirname $0)/configure -C --prefix=$HOME --disable-static --enable-exception-specs=nothrow --enable-gtk-doc CXX='g++ -pipe' CPPFLAGS='-I$HOME/include -DNDEBUG' CXXFLAGS='-O3 -Wall -Wextra -Wno-missing-braces -Wno-unused-variable -fvisibility=hidden -fvisibility-inlines-hidden' LDFLAGS='-L$HOME/lib64 -L$HOME/lib' JAVA_HOME=/usr/lib/jvm/jre "$*"
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-07-03 15:52:51 UTC (rev 3941)
+++ trunk/configure.ac 2009-07-03 19:31:03 UTC (rev 3942)
@@ -95,7 +95,8 @@
#
# Allow users to specify any Boost library name suffix
#
-AC_ARG_VAR([BOOST_LIB_SUFFIX], [Boost library name suffix])
+AS_IF([test $BOOST_LIB_SUFFIX], , [BOOST_LIB_SUFFIX=-mt])
+AC_ARG_VAR([BOOST_LIB_SUFFIX], [Boost library name suffix [default=-mt]])
AC_CACHE_CHECK([for boost_thread$BOOST_LIB_SUFFIX library],
[ov_cv_boost_thread],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|