diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 18:35:43 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 18:35:43 +0000 |
commit | 4ce2de9d6d5b6f5902a167cdd2c2079618ad826a (patch) | |
tree | 8d4cce90914fa246590730318e7bb29f639d6b39 /graphics | |
parent | . Fix the sysarch() prototype as was done in XFree86-4-Server. Hopefully (diff) |
BROKEN on !i386: Does not compile
Notes
Notes:
svn path=/head/; revision=102115
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xmrm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/xmrm/Makefile b/graphics/xmrm/Makefile index 03369a1f8c7d..446a9279e069 100644 --- a/graphics/xmrm/Makefile +++ b/graphics/xmrm/Makefile @@ -26,8 +26,14 @@ USE_X_PREFIX= yes USE_XPM= yes NO_WRKSUBDIR= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xmrm ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/xmrm_mpeg ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |