diff options
author | kris <kris@FreeBSD.org> | 2004-03-19 13:42:38 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-19 13:42:38 +0000 |
commit | 9945f86132d2ce47dd79bcc47b04a2c9e8691db3 (patch) | |
tree | 8a34fb20e2af3a67ccbb4712d3c4a610787a8208 /devel/eboxy | |
parent | 254cfae0dd0dc0a1200f3a79b1c493f43f0d28bb (diff) | |
download | FreeBSD-ports-9945f86132d2ce47dd79bcc47b04a2c9e8691db3.zip FreeBSD-ports-9945f86132d2ce47dd79bcc47b04a2c9e8691db3.tar.gz |
BROKEN on ia64: Configure fails
Diffstat (limited to 'devel/eboxy')
-rw-r--r-- | devel/eboxy/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/eboxy/Makefile b/devel/eboxy/Makefile index ff586ce..f30af2b 100644 --- a/devel/eboxy/Makefile +++ b/devel/eboxy/Makefile @@ -30,9 +30,15 @@ CPPFLAGS= `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include \ -DHAVE_DECL_GETOPT -fPIC LDFLAGS= `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" +BROKEN= "Configure fails on ia64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-O2 $$CFLAGS|$$CFLAGS|g' ${WRKSRC}/configure @${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |