diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-04 05:15:36 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-04 05:15:36 +0800 |
commit | e16d0dd7e624b3c1e94bfd13be209b6b9afcde82 (patch) | |
tree | 358112f5c5e7a11b40e01c42fd1c698d0b8e2ba4 | |
parent | 933ef348a5c2d4234ed81aa0ecaacefaf24c54db (diff) | |
download | marcuscom-ports-e16d0dd7e624b3c1e94bfd13be209b6b9afcde82.tar.gz marcuscom-ports-e16d0dd7e624b3c1e94bfd13be209b6b9afcde82.tar.zst marcuscom-ports-e16d0dd7e624b3c1e94bfd13be209b6b9afcde82.zip |
The fpsetsticky fix only applies to amd64.
Submitted by: ade
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3351 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | graphics/inkscape/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index 10ba7b42d..d753adc75 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -40,7 +40,7 @@ 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 +.if ${ARCH} == "amd64" @${REINPLACE_CMD} -e 's|fpresetsticky|fpsetsticky|g' \ ${WRKSRC}/src/main.cpp .endif |