diff options
author | oliver <oliver@FreeBSD.org> | 2003-12-28 19:10:42 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2003-12-28 19:10:42 +0800 |
commit | d30da7710ba2e8ebc601a29af7e2972829a05b4d (patch) | |
tree | 75cd0fc889d845dbf6ea1b8a0ad29075a605439a /devel/boost | |
parent | a590b0c378c0a435cbbcbb34c90cef4aef253257 (diff) | |
download | freebsd-ports-gnome-d30da7710ba2e8ebc601a29af7e2972829a05b4d.tar.gz freebsd-ports-gnome-d30da7710ba2e8ebc601a29af7e2972829a05b4d.tar.zst freebsd-ports-gnome-d30da7710ba2e8ebc601a29af7e2972829a05b4d.zip |
Fix build on Alpha and Sparc arch
Approved By: maintainer timeout (2 weeks)
Diffstat (limited to 'devel/boost')
-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 |