Revision: 1369
http://svn.sourceforge.net/complement/?rev=1369&view=rev
Author: complement
Date: 2006-11-01 08:34:46 -0800 (Wed, 01 Nov 2006)
Log Message:
-----------
fix build boost:thread
Modified Paths:
--------------
trunk/complement/extern/custom/boost/libs/thread/Makefile
trunk/complement/extern/custom/boost/libs/thread/Makefile.inc
Modified: trunk/complement/extern/custom/boost/libs/thread/Makefile
===================================================================
--- trunk/complement/extern/custom/boost/libs/thread/Makefile 2006-11-01 16:26:45 UTC (rev 1368)
+++ trunk/complement/extern/custom/boost/libs/thread/Makefile 2006-11-01 16:34:46 UTC (rev 1369)
@@ -1,5 +1,4 @@
# -*- makefile -*- Time-stamp: <03/03/31 15:18:29 ptr>
-# $Id$
SRCROOT := ../../../../../explore
COMPILER_NAME := gcc
@@ -7,4 +6,4 @@
include Makefile.inc
include ${SRCROOT}/Makefiles/top.mak
-INCLUDES += -I$(STLPORT_INCLUDE_DIR) -I${BOOST_INCLUDE_DIR}
+INCLUDES += -I${BOOST_INCLUDE_DIR}
Modified: trunk/complement/extern/custom/boost/libs/thread/Makefile.inc
===================================================================
--- trunk/complement/extern/custom/boost/libs/thread/Makefile.inc 2006-11-01 16:26:45 UTC (rev 1368)
+++ trunk/complement/extern/custom/boost/libs/thread/Makefile.inc 2006-11-01 16:34:46 UTC (rev 1369)
@@ -1,17 +1,20 @@
# -*- makefile -*- Time-stamp: <03/03/31 15:11:21 ptr>
-# $Id$
-BOOST_REGEX_SRC = $(BOOST_INCLUDE_DIR)/libs/thread/src
+BOOST_SRC = $(BOOST_INCLUDE_DIR)/libs/thread/src
LIBNAME = boost_thread
MAJOR = 1
-MINOR = 31
-PATCH = 0
-SRC_CPP = $(BOOST_REGEX_SRC)/condition.cpp \
- $(BOOST_REGEX_SRC)/mutex.cpp \
- $(BOOST_REGEX_SRC)/recursive_mutex.cpp \
- $(BOOST_REGEX_SRC)/thread.cpp \
- $(BOOST_REGEX_SRC)/tss.cpp \
- $(BOOST_REGEX_SRC)/xtime.cpp \
- $(BOOST_REGEX_SRC)/once.cpp \
- $(BOOST_REGEX_SRC)/exceptions.cpp \
- $(BOOST_REGEX_SRC)/threadmon.cpp
+MINOR = 33
+PATCH = 1
+
+SRC_CPP = $(BOOST_SRC)/condition.cpp \
+ $(BOOST_SRC)/mutex.cpp \
+ $(BOOST_SRC)/recursive_mutex.cpp \
+ $(BOOST_SRC)/thread.cpp \
+ $(BOOST_SRC)/xtime.cpp \
+ $(BOOST_SRC)/once.cpp \
+ $(BOOST_SRC)/exceptions.cpp \
+ $(BOOST_SRC)/barrier.cpp \
+ $(BOOST_SRC)/tss.cpp \
+ $(BOOST_SRC)/tss_hooks.cpp \
+ $(BOOST_SRC)/tss_dll \
+ $(BOOST_SRC)/tss_pe
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|