pkgsrc/devel/boost-libs/Makefile
jmcneill 74f1be2db9 Work around "fatal error: had to relocate PCH" by setting pch=off for
NetBSD/earm if gcc is being used. Fixes build for me on NetBSD/earmv7hf
7.0_BETA with gcc.
2014-11-19 11:46:17 +00:00

44 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.31 2014/11/19 11:46:17 jmcneill Exp $
BOOST_PACKAGE= libs
BOOST_COMMENT= (binary libraries)
BOOST_CONFIG= installed
BOOST_INSTALL_LIBS= yes
.include "../../meta-pkgs/boost/Makefile.common"
INSTALLATION_DIRS+= lib
BJAM_ARGS+= --without-python
PLIST_VARS+= context log
.if $(OPSYS) == "NetBSD" && (($(MACHINE_ARCH) == "i386" || $(MACHINE_ARCH) == "sparc64") || (!empty(MACHINE_ARCH:Mearm*) && !empty(PKGSRC_COMPILER:Mgcc)))
BJAM_ARGS+= pch=off
.elif !empty(MACHINE_ARCH:Malpha) || !empty(MACHINE_ARCH:Mm68k)
BJAM_ARGS+= --without-context
.endif
.if empty(BJAM_ARGS:M--without-context)
PLIST.context= yes
.endif
# Darwin GCC is unable to build Boost.Log
.if ${OPSYS} == "Darwin" && !empty(PKGSRC_COMPILER:Mgcc)
BJAM_ARGS+= --without-log
.else
PLIST.log= yes
.endif
UNLIMIT_RESOURCES+= stacksize
.include "../../devel/boost-jam/bjam.mk"
do-build: bjam-build
do-install: boost-install-libs
.include "../../archivers/bzip2/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"