diff options
author | kris <kris@FreeBSD.org> | 2004-03-13 17:53:47 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-13 17:53:47 +0800 |
commit | f0cbf0414748c88d221c600e6e9cb539ba423442 (patch) | |
tree | 9b8aea4262348b06c17ab1af949ee3270837d49a /devel | |
parent | 8402c5f798158690436998410bbdbafb3ffc955f (diff) | |
download | freebsd-ports-gnome-f0cbf0414748c88d221c600e6e9cb539ba423442.tar.gz freebsd-ports-gnome-f0cbf0414748c88d221c600e6e9cb539ba423442.tar.zst freebsd-ports-gnome-f0cbf0414748c88d221c600e6e9cb539ba423442.zip |
BROKEN on alpha 4.x: Does not compile
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cppadvio/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/cppadvio/Makefile b/devel/cppadvio/Makefile index 9c452d7a9bd9..04c3feb54ae7 100644 --- a/devel/cppadvio/Makefile +++ b/devel/cppadvio/Makefile @@ -21,6 +21,12 @@ ALL_TARGET= lib USE_GMAKE= yes USE_GCC= 2.95 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} < 500000 +BROKEN= "Does not compile on alpha 4.x" +.endif + post-patch: @( cd ${WRKSRC}; ${MV} c++ c++.orig; \ ${SED} -e 's|^ *gcc|${CXX} ${CXXFLAGS}|' c++.orig > c++; ${CHMOD} +x c++ ) @@ -45,4 +51,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/cppadvio .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |