diff options
author | recht <recht@pkgsrc.org> | 2004-07-27 15:37:22 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-07-27 15:37:22 +0000 |
commit | 8a2bc5c96b123817bfb548a160859369316daee4 (patch) | |
tree | bd98aa3707984b1e4de6f1c7e9ca113669d2f16e /net/gift/Makefile | |
parent | 0f0a7d9d2e41c9a9f1d98b975ce67af1268f61c8 (diff) | |
download | pkgsrc-8a2bc5c96b123817bfb548a160859369316daee4.tar.gz |
To allow plugins the use of pthreads giftd itself has to be built
against libpthread. Or in other words: dlopen of libpthread doesn't work.
Patch sent in private mail by Kailash Sethuraman
bump PKGREVISION to 1
Diffstat (limited to 'net/gift/Makefile')
-rw-r--r-- | net/gift/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/gift/Makefile b/net/gift/Makefile index 592c2984a63..f1eb34c7de5 100644 --- a/net/gift/Makefile +++ b/net/gift/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/05/08 02:03:58 xtraeme Exp $ +# $NetBSD: Makefile,v 1.2 2004/07/27 15:37:22 recht Exp $ # DISTNAME= gift-0.11.6 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gift/} EXTRACT_SUFX= .tar.bz2 @@ -15,9 +16,12 @@ USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes GNU_CONFIGURE= yes +LIBS+= ${PTHREAD_LDFLAGS} + PKGCONFIG_OVERRIDE+= ${WRKSRC}/lib/libgift.pc.in .include "../../devel/libtool/buildlink3.mk" .include "../../audio/libvorbis/buildlink3.mk" .include "../../devel/pkgconfig/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |