diff options
author | kris <kris@FreeBSD.org> | 2004-04-19 20:53:55 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-04-19 20:53:55 +0800 |
commit | 6ba4963f2d44a3800aa81146f6e8c9515cdfc773 (patch) | |
tree | c2801e6d055b896ff509259742e4f6e5f57ccddf /devel | |
parent | f7b55465095635457553da3f08a28bc13d30b337 (diff) | |
download | freebsd-ports-gnome-6ba4963f2d44a3800aa81146f6e8c9515cdfc773.tar.gz freebsd-ports-gnome-6ba4963f2d44a3800aa81146f6e8c9515cdfc773.tar.zst freebsd-ports-gnome-6ba4963f2d44a3800aa81146f6e8c9515cdfc773.zip |
BROKEN: Does not compile on alpha 4.x
# This is probably broken on all !i386 platforms, but it depends on gcc
# 2.95, and alpha 4.x is the only non-i386 platform where that builds.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cppadvio/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devel/cppadvio/Makefile b/devel/cppadvio/Makefile index 561f0cdc3881..aa3c391ab08c 100644 --- a/devel/cppadvio/Makefile +++ b/devel/cppadvio/Makefile @@ -23,6 +23,10 @@ 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++ ) |