[pkg-boost-commits] r14231 - boost/trunk/debian

smr at alioth.debian.org smr at alioth.debian.org
Mon May 19 06:19:12 UTC 2008


Author: smr
Date: 2008-05-19 06:19:11 +0000 (Mon, 19 May 2008)
New Revision: 14231

Modified:
   boost/trunk/debian/changelog
   boost/trunk/debian/rules
Log:
Change from <define> to <compileflags> when constructing user-config.jam

Modified: boost/trunk/debian/changelog
===================================================================
--- boost/trunk/debian/changelog	2008-05-19 05:44:52 UTC (rev 14230)
+++ boost/trunk/debian/changelog	2008-05-19 06:19:11 UTC (rev 14231)
@@ -2,8 +2,11 @@
 
   * debian/patches/serialization-intrinsic64.patch: New.  Patch from
     upstream to fix build problem with GCC 4.3 on 64-bit systems.
+  
+  * debian/rules: The gcc module of bjam no longer honours <define>, so
+    use <compileflags>-D_REENTRANT in user-config.jam.
 
- -- Steve M. Robbins <smr at debian.org>  Mon, 19 May 2008 00:18:12 -0500
+ -- Steve M. Robbins <smr at debian.org>  Mon, 19 May 2008 01:18:27 -0500
 
 boost1.35 (1.35.0-2) unstable; urgency=low
 

Modified: boost/trunk/debian/rules
===================================================================
--- boost/trunk/debian/rules	2008-05-19 05:44:52 UTC (rev 14230)
+++ boost/trunk/debian/rules	2008-05-19 06:19:11 UTC (rev 14231)
@@ -126,9 +126,9 @@
 		) \
 	)
 
-TOOLSET_CONFIG="using gcc : : : <define>_REENTRANT ;"
+TOOLSET_CONFIG="using gcc : : : <compileflags>-D_REENTRANT ;"
 ifeq ($(DEB_BUILD_ARCH), hppa)
-TOOLSET_CONFIG="using gcc : : : <define>_REENTRANT <compileflags>-mlong-calls ;"
+TOOLSET_CONFIG="using gcc : : : <compileflags>-D_REENTRANT <compileflags>-mlong-calls ;"
 endif
 PYTHON_CONFIG1 = "using python : 2.4 : /usr ;"
 PYTHON_CONFIG2 = "using python : 2.5 : /usr ;"




More information about the pkg-boost-commits mailing list