summaryrefslogtreecommitdiff
path: root/devel/boost-libs
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2016-02-12 14:24:01 +0000
committerryoon <ryoon@pkgsrc.org>2016-02-12 14:24:01 +0000
commit6e032cd5fa5a67c7cdce5732a5e60306ed719d01 (patch)
tree3089747aeb337137b671fad849bdd0662af63420 /devel/boost-libs
parent12c376e3a994d0bd4891028b63ddf692a39809f3 (diff)
downloadpkgsrc-6e032cd5fa5a67c7cdce5732a5e60306ed719d01.tar.gz
Disable long double math functions for NetBSD and FreeBSD.
Bump PKGREVISION for devel/boost-headers and devel/boost-libs. This fixes databases/mongodb build.
Diffstat (limited to 'devel/boost-libs')
-rw-r--r--devel/boost-libs/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/boost-libs/Makefile b/devel/boost-libs/Makefile
index c4918a0eeaf..f36b25c0feb 100644
--- a/devel/boost-libs/Makefile
+++ b/devel/boost-libs/Makefile
@@ -1,5 +1,6 @@
-# $NetBSD: Makefile,v 1.37 2015/12/27 12:41:42 adam Exp $
+# $NetBSD: Makefile,v 1.38 2016/02/12 14:24:01 ryoon Exp $
+PKGREVISION= 1
BOOST_PACKAGE= libs
BOOST_COMMENT= (binary libraries)
BOOST_CONFIG= installed
@@ -31,7 +32,8 @@ PLIST.log= yes
# Long double math functions are not available on Darwin. See
# boost/math/tools/config.hpp:53
-.if ${OPSYS} != "Darwin" || !empty(MACHINE_PLATFORM:MDarwin-1[3-9].*)
+.if ${OPSYS} != "Darwin" && !empty(MACHINE_PLATFORM:MDarwin-1[3-9].*) && \
+ ${OPSYS} != "NetBSD"
PLIST.long_double_math= yes
.endif