diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2004-12-02 22:58:27 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2004-12-02 22:58:27 +0000 |
commit | c666ed3aa4c4ee71f9a7c94dd7654b1bcfce8e48 (patch) | |
tree | 44ff0b6a1075b481ae93081f5272384d1feb18a0 | |
parent | Forget to notice: (diff) |
Mark BROKEN for Alpha
Pointed out by: pointy hat via kris
Notes
Notes:
svn path=/head/; revision=123008
-rw-r--r-- | www/osb-nrcore/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/osb-nrcore/Makefile b/www/osb-nrcore/Makefile index 10e35cf5f3fc..2a5390671024 100644 --- a/www/osb-nrcore/Makefile +++ b/www/osb-nrcore/Makefile @@ -24,8 +24,14 @@ INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -DNDEBUG" \ LDFLAGS="${PTHREAD_LIBS}" +.include <bsd.port.pre.mk> + +.if ${ARCH}=="alpha" +BROKEN= Does not compile on ${ARCH} +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread||; s|-nostdinc++||; \ s|-fPIC||' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |