Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (e296e498bc8bbb907e06ab4bb7b2d8e88929ee15)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (e296e498bc8bbb907e06ab4bb7b2d8e88929ee15)
  • Date: Sun, 14 Jun 2009 06:15:07 -0500

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

libs/boost/BUILD | 2 +-
libs/boost/DETAILS | 4 ++--
libs/boost/HISTORY | 5 +++++
libs/boost/INSTALL | 2 +-
libs/boost/PRE_BUILD | 3 +++
libs/boost/gcc44.diff | 14 ++++++++++++++
6 files changed, 26 insertions(+), 4 deletions(-)

New commits:
commit 2bb06211123e24fdd218b5411f86a7c9a3f8f4e2
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

boost: => 1_39_0

diff --git a/libs/boost/BUILD b/libs/boost/BUILD
index 5c1dd94..c3fb034 100755
--- a/libs/boost/BUILD
+++ b/libs/boost/BUILD
@@ -29,6 +29,6 @@ bjam -q \
link=shared \
--prefix=${INSTALL_ROOT}/usr \
--toolset=gcc \
- threading=single,multi \
+ threading=multi \
--layout=system \
$OPTS
diff --git a/libs/boost/DETAILS b/libs/boost/DETAILS
index 641cd2e..9b81f79 100755
--- a/libs/boost/DETAILS
+++ b/libs/boost/DETAILS
@@ -1,6 +1,6 @@
SPELL=boost
- VERSION=1_38_0
-
SOURCE_HASH=sha512:8010c53987644a2227daafdf4f0d0d00817f5ba623046c7da8900d0b8f2a2e4d74b4546d6506e23e1e7aff6577524eee6919889d9b8764ac0f67f4d4626f424e
+ VERSION=1_39_0
+
SOURCE_HASH=sha512:473a3da235f954487f7f8150f4892b5be5df187d688e3c1324189809b0110374ed6bfcafe89f41bb02f1339522a571e8cc022971d42104be2cd3cdb3db95874a
SOURCE=${SPELL}_${VERSION}.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/${SPELL}_${VERSION}
SOURCE_URL[0]=${SOURCEFORGE_URL}/$SPELL/$SOURCE
diff --git a/libs/boost/HISTORY b/libs/boost/HISTORY
index a2f212b..5791b01 100644
--- a/libs/boost/HISTORY
+++ b/libs/boost/HISTORY
@@ -1,3 +1,8 @@
+2009-05-10 Treeeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1_39_0
+ * PRE_BUILD, gcc44.diff: added
+ * BUILD, INSTALL: remove threading=single (obsolete)
+
2009-02-09 Treeeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1_38_0

diff --git a/libs/boost/INSTALL b/libs/boost/INSTALL
index 8060414..daba7d8 100755
--- a/libs/boost/INSTALL
+++ b/libs/boost/INSTALL
@@ -4,7 +4,7 @@ bjam -q \
link=shared \
--prefix=${INSTALL_ROOT}/usr \
--toolset=gcc \
- threading=single,multi \
+ threading=multi \
--layout=system \
$OPTS \
install
diff --git a/libs/boost/PRE_BUILD b/libs/boost/PRE_BUILD
new file mode 100755
index 0000000..de6f2bd
--- /dev/null
+++ b/libs/boost/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p0 < $SPELL_DIRECTORY/gcc44.diff
diff --git a/libs/boost/gcc44.diff b/libs/boost/gcc44.diff
new file mode 100644
index 0000000..8531869
--- /dev/null
+++ b/libs/boost/gcc44.diff
@@ -0,0 +1,14 @@
+--- boost/filesystem/operations.hpp (revision 52859)
++++ boost/filesystem/operations.hpp (working copy)
+@@ -659,9 +659,9 @@
+ { return is_symlink<wpath>( ph ); }
+
+ inline bool is_empty( const path & ph )
+- { return is_empty<path>( ph ); }
++ { return boost::filesystem::is_empty<path>( ph ); }
+ inline bool is_empty( const wpath & ph )
+- { return is_empty<wpath>( ph ); }
++ { return boost::filesystem::is_empty<wpath>( ph ); }
+
+ inline bool equivalent( const path & ph1, const path & ph2 )
+ { return equivalent<path>( ph1, ph2 ); }




Archive powered by MHonArc 2.6.24.

Top of Page