diff options
author | joerg <joerg> | 2007-10-05 22:31:43 +0000 |
---|---|---|
committer | joerg <joerg> | 2007-10-05 22:31:43 +0000 |
commit | 1cecfe9bdc88d0483940518c9382fed4e84a003a (patch) | |
tree | c580404ec7c9f1ee7538ec01874a1ec059c86c32 /graphics/gimp2-wideangle | |
parent | 06482aa718778d72a0757ea9706b21e4a6c1968f (diff) | |
download | pkgsrc-1cecfe9bdc88d0483940518c9382fed4e84a003a.tar.gz |
Explicitly link against pthread.
Diffstat (limited to 'graphics/gimp2-wideangle')
-rw-r--r-- | graphics/gimp2-wideangle/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/graphics/gimp2-wideangle/Makefile b/graphics/gimp2-wideangle/Makefile index 0e61c8787da..2f8ff7888ee 100644 --- a/graphics/gimp2-wideangle/Makefile +++ b/graphics/gimp2-wideangle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2007/09/21 13:03:50 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2007/10/05 22:38:24 joerg Exp $ # DISTNAME= wideangle @@ -17,11 +17,14 @@ USE_TOOLS+= pkg-config DIST_SUBDIR= ${PKGNAME_NOREV} WRKSRC= ${WRKDIR} +LINK_PTHREAD= ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} + do-build: - (cd ${WRKSRC} && gimptool-2.0 --build wideangle.c) + (cd ${WRKSRC} && LIBS=${LINK_PTHREAD:Q} gimptool-2.0 --build wideangle.c) do-install: (cd ${WRKSRC} && gimptool-2.0 --install-admin-bin wideangle) .include "../../graphics/gimp/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |