diff options
author | kris <kris@FreeBSD.org> | 2004-03-14 09:39:30 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-14 09:39:30 +0800 |
commit | a915e236bd62d45f017e7c395e29434a1c8c7855 (patch) | |
tree | 4a283b916c8f51c2fa38c5229618cd9870c3df2d /ftp/curlpp | |
parent | 42b6c4537ef50489470c4740eadfa13facfea62f (diff) | |
download | freebsd-ports-gnome-a915e236bd62d45f017e7c395e29434a1c8c7855.tar.gz freebsd-ports-gnome-a915e236bd62d45f017e7c395e29434a1c8c7855.tar.zst freebsd-ports-gnome-a915e236bd62d45f017e7c395e29434a1c8c7855.zip |
BROKEN on alpha 4.x: Does not compile
Diffstat (limited to 'ftp/curlpp')
-rw-r--r-- | ftp/curlpp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ftp/curlpp/Makefile b/ftp/curlpp/Makefile index 1ce2e7b63afb..2aa2fdbdcf09 100644 --- a/ftp/curlpp/Makefile +++ b/ftp/curlpp/Makefile @@ -26,6 +26,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ CONFIGURE_ARGS= --disable-ewarning INSTALLS_SHLIB= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} < 500000 +BROKEN= "Does not compile on alpha 4.x" +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${EXAMPLESDIR} @@ -33,4 +39,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/test/example*.cpp ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |