diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-14 04:21:02 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-14 04:21:02 +0800 |
commit | 0290005a96db7df648d7929c538003dc0337dd74 (patch) | |
tree | f089d36f774114c21f84404cfe461ed384dce4f2 | |
parent | cc694bb9ffd293e58e288b5808ad9c8940b8aa29 (diff) | |
download | marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar.gz marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar.bz2 marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar.lz marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar.xz marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.tar.zst marcuscom-ports-0290005a96db7df648d7929c538003dc0337dd74.zip |
Fix the build on 4.X.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4490 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | graphics/cairo/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile index 2ca64258e..ea566f513 100644 --- a/graphics/cairo/Makefile +++ b/graphics/cairo/Makefile @@ -3,7 +3,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/graphics/cairo/Makefile,v 1.19 2005/08/13 12:55:59 ahze Exp $ +# $MCom: ports/graphics/cairo/Makefile,v 1.20 2005/08/13 18:53:46 marcus Exp $ # PORTNAME= cairo @@ -54,7 +54,10 @@ PLIST_SUB+= X11="" post-patch: .if ${OSVERSION} < 500000 @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \ - ${WRKSRC}/src/*.* + ${WRKSRC}/src/*.* \ + ${WRKSRC}/pixman/src/*.* .endif + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \ + ${WRKSRC}/test/Makefile.in .include <bsd.port.post.mk> |