mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
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
|
PORTNAME= boost
|
||||||
PORTVERSION= 1.32.0
|
PORTVERSION= 1.32.0
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:boost_site,spirit_site/}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:boost_site,spirit_site/}
|
||||||
MASTER_SITE_SUBDIR=boost/:boost_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.orig Sat Feb 5 12:53:03 2005
|
||||||
+++ boost/config/platform/bsd.hpp Wed Dec 15 16:01:21 2004
|
+++ boost/config/platform/bsd.hpp Sat Feb 5 12:53:46 2005
|
||||||
@@ -39,9 +39,20 @@
|
@@ -41,8 +41,9 @@
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
-// No wide character support in the BSD header files:
|
// No wide character support in the BSD header files:
|
||||||
+// Enable wide character support on FreeBSD 5 and above
|
|
||||||
//
|
//
|
||||||
-#define BOOST_NO_CWCHAR
|
-#define BOOST_NO_CWCHAR
|
||||||
+#if defined(__FreeBSD__) && (__FreeBSD__ >= 5)
|
-
|
||||||
+# undef BOOST_NO_CWCHAR
|
+#if !(defined(__FreeBSD__) && (__FreeBSD__ >= 5))
|
||||||
+# undef BOOST_NO_SWPRINTF
|
|
||||||
+# undef BOOST_NO_CWCTYPE
|
|
||||||
+# undef BOOST_DEDUCED_TYPENAME
|
|
||||||
+#else
|
|
||||||
+# define BOOST_NO_CWCHAR
|
+# define BOOST_NO_CWCHAR
|
||||||
+# define BOOST_NO_SWPRINTF
|
|
||||||
+# define BOOST_NO_CWCTYPE
|
|
||||||
+#endif
|
+#endif
|
||||||
+
|
|
||||||
+#define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// The BSD <ctype.h> has macros only, no functions:
|
// The BSD <ctype.h> has macros only, no functions:
|
||||||
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue