summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2015-10-23 19:07:58 +0000
committertnn <tnn@pkgsrc.org>2015-10-23 19:07:58 +0000
commitab621d54d17e4cc3f28e0ef526eea253715e6afa (patch)
tree358148d22156b0020922e99130e8af87a8d84660
parenta998d696b6fe72a6ad14479a0f7c63853a487abd (diff)
downloadpkgsrc-ab621d54d17e4cc3f28e0ef526eea253715e6afa.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.
-rw-r--r--net/samba/Makefile3
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