diff options
-rw-r--r-- | editors/bed/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/editors/bed/Makefile b/editors/bed/Makefile index 5f750b237fb1..a81997a48d31 100644 --- a/editors/bed/Makefile +++ b/editors/bed/Makefile @@ -40,6 +40,16 @@ PLIST_SUB+= X11="@comment " .else PLIST_SUB+= X11="" +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 (missing -fPIC)" +.endif + +.if ${ARCH} == "ia64" +BROKEN= "Hangs during configure" +.endif + .if !defined(BATCH) && !defined(PACKAGE_BUILDING) pre-configure: @if "${X11BASE}/bin/rxvt" -h 2>&1 | ${GREP} -qi menubar; then \ @@ -57,4 +67,4 @@ post-configure: ${ECHO_MSG} 'CONFIG_MMAP=y' >> ${WRKSRC}/config ${GMAKE} -C ${WRKSRC} dep -.include <bsd.port.mk> +.include <bsd.port.post.mk> |