9de9cbef6f
libgcrypt installs a library and 3 binaries, none of which are linked against pthreads (on NetBSD 6). It installs one .h, which also does not reference pthreads. However, it contains a comment that thread callbacks were removed from libgcrypt as of 1.6. I rebuilt dirmngr, glib-networking, gnupg2, libgnome-keyring, libksba, libotr, libxslt, and pidgin-otr with the new version with no issues. Note that I am not removing mk/pthread.buildlink3.mk from Makefile, because it builds t-lock (used in make test but not installed) with threads.
15 lines
431 B
Makefile
15 lines
431 B
Makefile
# $NetBSD: buildlink3.mk,v 1.17 2014/03/14 13:39:07 gdt Exp $
|
|
|
|
BUILDLINK_TREE+= libgcrypt
|
|
|
|
.if !defined(LIBGCRYPT_BUILDLINK3_MK)
|
|
LIBGCRYPT_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.libgcrypt+= libgcrypt>=1.2.0
|
|
BUILDLINK_ABI_DEPENDS.libgcrypt+= libgcrypt>=1.6.0
|
|
BUILDLINK_PKGSRCDIR.libgcrypt?= ../../security/libgcrypt
|
|
|
|
.include "../../security/libgpg-error/buildlink3.mk"
|
|
.endif # LIBGCRYPT_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -libgcrypt
|