diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-04-10 20:07:28 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-04-10 20:07:28 +0000 |
commit | 5fafa07ef1a4b6ff03c3467c7f8b6c81d247d577 (patch) | |
tree | 82535357b09c706b4bd60228d931ba93343523c6 /graphics/sharpconstruct | |
parent | eff040c2df3c5452fdaa7f2a72b841d0752d6c24 (diff) | |
download | ports-5fafa07ef1a4b6ff03c3467c7f8b6c81d247d577.tar.gz ports-5fafa07ef1a4b6ff03c3467c7f8b6c81d247d577.zip |
- Fix build on architectures which lack SSE instructions
PR: ports/95552
Submitted by: Dmitry Marakasov <amdmi3@mail.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=159298
Diffstat (limited to 'graphics/sharpconstruct')
-rw-r--r-- | graphics/sharpconstruct/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/sharpconstruct/Makefile b/graphics/sharpconstruct/Makefile index 395eefbb73b5..74ae7c49106c 100644 --- a/graphics/sharpconstruct/Makefile +++ b/graphics/sharpconstruct/Makefile @@ -41,5 +41,6 @@ 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 <bsd.port.post.mk> |