diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2003-12-28 11:10:42 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2003-12-28 11:10:42 +0000 |
commit | deb5e9a9edfd1cb944e63472cee70b63261a0b61 (patch) | |
tree | 0f8443ff6e1a4a5b4cdc71c3ea0d451383109a4a /devel | |
parent | New port: iiimf-* (diff) |
Fix build on Alpha and Sparc arch
Approved By: maintainer timeout (2 weeks)
Notes
Notes:
svn path=/head/; revision=96773
Diffstat (limited to 'devel')
-rw-r--r-- | devel/boost/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/devel/boost/Makefile b/devel/boost/Makefile index 061ec534fe29..1e420b5328a8 100644 --- a/devel/boost/Makefile +++ b/devel/boost/Makefile @@ -36,11 +36,18 @@ PLIST_SUB= BOOST_PYTHON="@comment " INSTALLS_SHLIB= yes DOCFILES= *.css *.gif *.htm *.html *.jpeg *.jpg *.png +.include <bsd.port.pre.mk> + +.if ${ARCH} == alpha +BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsdaxp/bjam +.elif ${ARCH} == sparc64 +BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsdsparc/bjam +.else BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsd/bjam +.endif COMPILED_LIBS+= date_time filesystem regex signals test thread -.include <bsd.port.pre.mk> do-configure: # for -pthread options |