View | Details | Raw Unified | Return to bug 144336
Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 6-11 Link Here
6
#
6
#
7
7
8
PORTNAME=	boost-libs
8
PORTNAME=	boost-libs
9
PORTREVISION=	1
9
COMMENT=	Free portable C++ libraries (without Boost.Python)
10
COMMENT=	Free portable C++ libraries (without Boost.Python)
10
USE_BZIP2=	yes
11
USE_BZIP2=	yes
11
12
(-)files/patch-boost__config__compiler__gcc.hpp (+16 lines)
Added Link Here
1
--- boost/config/compiler/gcc.hpp.orig	2010-02-24 00:41:39.000000000 -0300
2
+++ boost/config/compiler/gcc.hpp	2010-02-24 00:44:56.000000000 -0300
3
@@ -104,6 +104,13 @@
4
 #  endif
5
 #endif
6
 
7
+//
8
+// gcc previous to 4.3.x does not implement inclass member initialization
9
+//
10
+#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 2))
11
+#  define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
12
+#endif
13
+
14
 // C++0x features not implemented in any GCC version
15
 //
16
 #define BOOST_NO_CONSTEXPR

Return to bug 144336