Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (3b4f1fc59df17e79bd718f1852890c683b4d0c57)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (3b4f1fc59df17e79bd718f1852890c683b4d0c57)
  • Date: Wed, 18 Apr 2012 20:49:43 -0500

GIT changes to master grimoire by Sukneet Basuta <sukneet AT sourcemage.org>:

dev/null |binary
libs/boost/BUILD | 12 +++++++++---
libs/boost/HISTORY | 6 +++++-
libs/boost/boost_1_48_0.tar.bz2.sig | 0
4 files changed, 14 insertions(+), 4 deletions(-)

New commits:
commit 3b4f1fc59df17e79bd718f1852890c683b4d0c57
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

boost: Dont build with --with-libraries specified when you don't select
which libraries to build, so all libs are built

diff --git a/libs/boost/BUILD b/libs/boost/BUILD
index ddb1dc5..761c61d 100755
--- a/libs/boost/BUILD
+++ b/libs/boost/BUILD
@@ -20,9 +20,15 @@ if list_find "${BOOST_LIBS}" "graph" ||
local EXPAT_INCLUDE=/usr/lib
local EXPAT_LIBPATH=/usr/include
fi &&
-./bootstrap.sh --with-toolset=gcc \
- -prefix=${INSTALL_ROOT}/usr \
- --with-libraries=${BOOST_LIBS} &&
+
+BOOTSTRAP_FLAGS="--with-toolset=gcc -prefix=${INSTALL_ROOT}/usr" &&
+
+# Don't specify with-libraries when you don't select them so it builds them
all
+if [[ $BOOST_SELECT_LIBS == "y" ]]; then
+ BOOTSTRAP_FLAGS="${BOOTSTRAP_FLAGS} --with-libraries=${BOOST_LIBS}"
+fi &&
+./bootstrap.sh $BOOTSTRAP_FLAGS &&
+
OPTS="$OPTS $BLIST" &&
CXXFLAGS="$CXXFLAGS" \
EXPAT_INCLUDE=$EXPAT_INCLUDE \
diff --git a/libs/boost/HISTORY b/libs/boost/HISTORY
index 8c29dfa..6b37f31 100644
--- a/libs/boost/HISTORY
+++ b/libs/boost/HISTORY
@@ -1,5 +1,9 @@
+2012-04-18 Sukneet Basuta <sukneet AT sourcemage.org>
+ * BUILD: Dont build with --with-libraries specified
+ when you don't select them, so all libs are built
+
2012-04-18 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
- * DEPENDS, BUILD: fixed selectable libraries, this fixes bug #385
+ * DEPENDS, BUILD: fixed selectable libraries, this fixes bug #385

2012-04-08 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* BUILD, CONFIGURE, DEPENDS, PRE_SUB_DEPENDS,
REPAIR^all^PRE_SUB_DEPENDS,
diff --git a/libs/boost/boost_1_48_0.tar.bz2.sig
b/libs/boost/boost_1_48_0.tar.bz2.sig
deleted file mode 100644
index 13ceca5..0000000
Binary files a/libs/boost/boost_1_48_0.tar.bz2.sig and /dev/null differ



  • [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (3b4f1fc59df17e79bd718f1852890c683b4d0c57), Sukneet Basuta, 04/18/2012

Archive powered by MHonArc 2.6.24.

Top of Page