diff options
author | recht <recht> | 2004-07-27 15:37:22 +0000 |
---|---|---|
committer | recht <recht> | 2004-07-27 15:37:22 +0000 |
commit | d158eb62d3e01331cbbed0ce29a4685afb5aa5bc (patch) | |
tree | bd98aa3707984b1e4de6f1c7e9ca113669d2f16e /net/gift/Makefile | |
parent | 717f4f13d87d51f8681a00849f7daf34ed23fe8f (diff) | |
download | pkgsrc-d158eb62d3e01331cbbed0ce29a4685afb5aa5bc.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" |