Unbreak devel/monotone on FreeBSD-5.3.
Bump PORTREVISION. PR: ports/76730 Submitted by: Mark A. Wicks and maintainer Obtained from: Boost CVS repository.
This commit is contained in:
parent
164331f397
commit
1d4a3faf88
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=128629
2 changed files with 8 additions and 18 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= boost
|
||||
PORTVERSION= 1.32.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:boost_site,spirit_site/}
|
||||
MASTER_SITE_SUBDIR=boost/:boost_site
|
||||
|
|
|
@ -1,25 +1,14 @@
|
|||
--- boost/config/platform/bsd.hpp.orig Fri Feb 27 14:13:00 2004
|
||||
+++ boost/config/platform/bsd.hpp Wed Dec 15 16:01:21 2004
|
||||
@@ -39,9 +39,20 @@
|
||||
#endif
|
||||
|
||||
--- boost/config/platform/bsd.hpp.orig Sat Feb 5 12:53:03 2005
|
||||
+++ boost/config/platform/bsd.hpp Sat Feb 5 12:53:46 2005
|
||||
@@ -41,8 +41,9 @@
|
||||
//
|
||||
-// No wide character support in the BSD header files:
|
||||
+// Enable wide character support on FreeBSD 5 and above
|
||||
// No wide character support in the BSD header files:
|
||||
//
|
||||
-#define BOOST_NO_CWCHAR
|
||||
+#if defined(__FreeBSD__) && (__FreeBSD__ >= 5)
|
||||
+# undef BOOST_NO_CWCHAR
|
||||
+# undef BOOST_NO_SWPRINTF
|
||||
+# undef BOOST_NO_CWCTYPE
|
||||
+# undef BOOST_DEDUCED_TYPENAME
|
||||
+#else
|
||||
-
|
||||
+#if !(defined(__FreeBSD__) && (__FreeBSD__ >= 5))
|
||||
+# define BOOST_NO_CWCHAR
|
||||
+# define BOOST_NO_SWPRINTF
|
||||
+# define BOOST_NO_CWCTYPE
|
||||
+#endif
|
||||
+
|
||||
+#define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
|
||||
|
||||
//
|
||||
// The BSD <ctype.h> has macros only, no functions:
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue