diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-03 07:32:43 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-03 07:32:43 +0800 |
commit | e8a7671f8d78332558cec7a6fbf34418668b06ef (patch) | |
tree | 07c7731ad1bc5fd1285d4962e5fd03f77b4d9395 /graphics | |
parent | 60636b71c51ad517148e7d8b49813fea645c6402 (diff) | |
download | marcuscom-ports-e8a7671f8d78332558cec7a6fbf34418668b06ef.tar.gz marcuscom-ports-e8a7671f8d78332558cec7a6fbf34418668b06ef.tar.zst marcuscom-ports-e8a7671f8d78332558cec7a6fbf34418668b06ef.zip |
Fix the build on 6.X.
Submitted by: ade
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3348 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/inkscape/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index ac1f2a139..10ba7b42d 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -40,5 +40,9 @@ IGNORE= "Can not be built with stock C++ compiller" post-patch: @${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' \ ${WRKSRC}/src/helper/action.cpp +.if ${OSVERSION} >= 600000 + @${REINPLACE_CMD} -e 's|fpresetsticky|fpsetsticky|g' \ + ${WRKSRC}/src/main.cpp +.endif .include <bsd.port.post.mk> |