[complement-svn] SF.net SVN: complement: [1658] trunk/complement/explore
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-08-03 06:17:42
|
Revision: 1658 http://complement.svn.sourceforge.net/complement/?rev=1658&view=rev Author: complement Date: 2007-08-02 23:17:38 -0700 (Thu, 02 Aug 2007) Log Message: ----------- let's try don't include boost's -I if macro not defined---mysterious behaviour otherwise happens Modified Paths: -------------- trunk/complement/explore/lib/stem/Makefile trunk/complement/explore/test/mt/Makefile Modified: trunk/complement/explore/lib/stem/Makefile =================================================================== --- trunk/complement/explore/lib/stem/Makefile 2007-08-03 06:06:03 UTC (rev 1657) +++ trunk/complement/explore/lib/stem/Makefile 2007-08-03 06:17:38 UTC (rev 1658) @@ -1,4 +1,4 @@ -# -*- Makefile -*- Time-stamp: <07/01/23 14:58:35 ptr> +# -*- Makefile -*- Time-stamp: <07/08/03 09:12:25 ptr> SRCROOT := ../.. @@ -9,9 +9,9 @@ dbg-shared: DEFS += -D__FIT_STEM_TRACE=1 -ifdef WITHOUT_STLPORT -INCLUDES += -I${BOOST_INCLUDE_DIR} -else +ifndef WITHOUT_STLPORT +# INCLUDES += -I${BOOST_INCLUDE_DIR} +# else stldbg-shared: DEFS += -D__FIT_STEM_TRACE=1 endif Modified: trunk/complement/explore/test/mt/Makefile =================================================================== --- trunk/complement/explore/test/mt/Makefile 2007-08-03 06:06:03 UTC (rev 1657) +++ trunk/complement/explore/test/mt/Makefile 2007-08-03 06:17:38 UTC (rev 1658) @@ -7,7 +7,10 @@ include ${SRCROOT}/Makefiles/gmake/top.mak -INCLUDES += -I$(SRCROOT)/include -I$(BOOST_INCLUDE_DIR) +INCLUDES += -I$(SRCROOT)/include +ifdef BOOST_DIR +INCLUDES += -I$(BOOST_INCLUDE_DIR) +endif DEFS += -D__FIT_EXAM # temporary, before dums fix strings: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |