diff options
author | tnn <tnn> | 2015-10-23 19:07:58 +0000 |
---|---|---|
committer | tnn <tnn> | 2015-10-23 19:07:58 +0000 |
commit | a943a8075bef828ec0315fe86fa5de95bc870161 (patch) | |
tree | 358148d22156b0020922e99130e8af87a8d84660 /net/samba | |
parent | cea5154f495b19cb24131c83ecfeaf4464cde117 (diff) | |
download | pkgsrc-a943a8075bef828ec0315fe86fa5de95bc870161.tar.gz |
Skip shlibs checks for samba loadable plugins on Darwin.
All dylibs get their -install_name set to ${PREFIX}/lib/libname.lib,
but plugins go in different directories which causes the check to misfire.
Diffstat (limited to 'net/samba')
-rw-r--r-- | net/samba/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile index fc05c3880b4..5b28ed3b7fd 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.255 2015/06/12 10:50:52 wiz Exp $ +# $NetBSD: Makefile,v 1.256 2015/10/23 19:07:58 tnn Exp $ DISTNAME= samba-${VERSION} CATEGORIES= net @@ -76,6 +76,7 @@ CONFIGURE_ARGS+= --enable-merged-build=no .include "../../net/samba/options.mk" .if ${_OPSYS_SHLIB_TYPE} == "dylib" +CHECK_SHLIBS_SKIP+= lib/samba/*/*.dylib lib/security/pam_winbind.dylib PLIST_SUBST+= LIBEXT=dylib SAMBA_LIBEXT= dylib .else |