diff options
author | kris <kris@FreeBSD.org> | 2005-12-18 02:52:13 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-12-18 02:52:13 +0800 |
commit | 4f21092bd99eb83e0342827834da3ca54d645c95 (patch) | |
tree | 8282c3df960993cc6d614e4cea6a25134daac150 /lang | |
parent | 0e1e85aba269198ba18ad5895839b86468144073 (diff) | |
download | freebsd-ports-gnome-4f21092bd99eb83e0342827834da3ca54d645c95.tar.gz freebsd-ports-gnome-4f21092bd99eb83e0342827834da3ca54d645c95.tar.zst freebsd-ports-gnome-4f21092bd99eb83e0342827834da3ca54d645c95.zip |
BROKEN on !i386: Does not compile
Diffstat (limited to 'lang')
-rw-r--r-- | lang/oorexx/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/oorexx/Makefile b/lang/oorexx/Makefile index b3abc0e8d5ef..a276807a29ea 100644 --- a/lang/oorexx/Makefile +++ b/lang/oorexx/Makefile @@ -20,10 +20,16 @@ INSTALLS_SHLIB= yes MAKE_ENV= EXAMPLESDIR="${EXAMPLESDIR}" MAN1= rexx.1 rexxc.1 rxmigrate.1 rxsubcom.1 rxqueue.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-D_REENTRANT|${PTHREAD_CFLAGS}|; \ s|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|/usr/local/oorexx|${PREFIX}/lib/oorexx|' \ ${WRKSRC}/rxtests/README -.include <bsd.port.mk> +.include <bsd.port.post.mk> |