From af51700c7c9881ec588222a005d8f602c1985300 Mon Sep 17 00:00:00 2001 From: pav Date: Fri, 5 May 2006 07:53:27 +0000 Subject: The port uses -msse compiler option, which I've disabled by ports/95552 to make it compile under amd64. That led to the port not compiling anywhere at all, as sse dependancy is hardcoded. So: - Don't remove -msse from compiler flags - Introduce ONLY_FOR_ARCHS=i386 PR: ports/95872 Submitted by: Dmitry Marakasov (maintainer) --- graphics/sharpconstruct/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'graphics/sharpconstruct/Makefile') diff --git a/graphics/sharpconstruct/Makefile b/graphics/sharpconstruct/Makefile index 74ae7c49106c..b19719f7b8d8 100644 --- a/graphics/sharpconstruct/Makefile +++ b/graphics/sharpconstruct/Makefile @@ -26,6 +26,8 @@ USE_GCC= 3.4+ MAN1= sharpconstruct.1 +ONLY_FOR_ARCHS= i386 + .include .if ${OSVERSION} < 500000 @@ -41,6 +43,5 @@ post-patch: @${REINPLACE_CMD} -e 's|memalign(b,c)|malloc(c)|' ${WRKSRC}/include/Align.hh @${FIND} ${WRKSRC} -name Makefile.in -print0 | ${XARGS} -0 \ ${REINPLACE_CMD} -e '/^DEFS / s|$$| -DDATADIR=\\"${DATADIR}\\"|' - @${REINPLACE_CMD} -e 's|-msse||' ${WRKSRC}/src/Makefile.in .include -- cgit