diff options
author | kris <kris@FreeBSD.org> | 2004-03-13 18:04:53 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-13 18:04:53 +0800 |
commit | ff71a3ac1d62ddc4ef80f3e0190b3fa46e780e45 (patch) | |
tree | d81e7d6fc1146a5f022520d188747fb1f63d261b /graphics | |
parent | f7ce7fb747a1872de391acce1508e3d6f776e443 (diff) | |
download | freebsd-ports-gnome-ff71a3ac1d62ddc4ef80f3e0190b3fa46e780e45.tar.gz freebsd-ports-gnome-ff71a3ac1d62ddc4ef80f3e0190b3fa46e780e45.tar.zst freebsd-ports-gnome-ff71a3ac1d62ddc4ef80f3e0190b3fa46e780e45.zip |
BROKEN on !i386: Does not compile
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/swfdec/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/swfdec/Makefile b/graphics/swfdec/Makefile index e0c412307d00..1f7ee4632fb9 100644 --- a/graphics/swfdec/Makefile +++ b/graphics/swfdec/Makefile @@ -30,8 +30,14 @@ INSTALLS_SHLIB= yes CPPFLAGS= -I${LOCALBASE}/include LDFLAGS= -L${LOCALBASE}/lib +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif + post-patch: @${REINPLACE_CMD} -e "s|sdl-config|${SDL_CONFIG:T}|g" ${WRKSRC}/configure @${REINPLACE_CMD} -e "s|malloc\.h|stdlib.h|g" ${WRKSRC}/libswfdec/jpeg/sl_types.h -.include <bsd.port.mk> +.include <bsd.port.post.mk> |