diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 13:00:02 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 13:00:02 +0000 |
commit | f2084d1b29e9a96cd5b238a79edd8f5bcbbf66c4 (patch) | |
tree | d5a45cf48ee10478d1f096a20e0bf05baec50d7e /lang/spidermonkey | |
parent | 47c2b100998b950c6266c1aa3d4bf80b020f0c0d (diff) | |
download | ports-f2084d1b29e9a96cd5b238a79edd8f5bcbbf66c4.tar.gz ports-f2084d1b29e9a96cd5b238a79edd8f5bcbbf66c4.zip |
Notes
Diffstat (limited to 'lang/spidermonkey')
-rw-r--r-- | lang/spidermonkey/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/spidermonkey/Makefile b/lang/spidermonkey/Makefile index 8670632d22d6..d6936ddc3351 100644 --- a/lang/spidermonkey/Makefile +++ b/lang/spidermonkey/Makefile @@ -20,6 +20,12 @@ CONFLICTS= njs-* PLIST_FILES= bin/js USE_GMAKE= YES +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64 (missing -fPIC)" +.endif + post-extract: ${MV} ${WRKDIR}/js/src ${WRKSRC} && \ ${RM} -rf js && \ @@ -31,4 +37,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/`uname -s``uname -r`_DBG.OBJ/js \ ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |