pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

pkg/49590: net/samba fails to build on Mac OS X 10.10 (with fix)



>Number:         49590
>Category:       pkg
>Synopsis:       net/samba fails to build on Mac OS X 10.10 (with fix)
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    pkg-manager
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Tue Jan 20 18:45:00 +0000 2015
>Originator:     Youri Mouton
>Release:        current
>Organization:
>Environment:
Darwin mac.local 14.0.0 Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64 x86_64
>Description:
net/samba's default options contain 'ads' which uses the kerberos option that makes the build fail on OS X 10.10. 
>How-To-Repeat:

>Fix:
Make ads not a suggested option on Darwin.

diff --git a/net/samba/options.mk b/net/samba/options.mk
index ce9c487..af0ecab 100644
--- a/net/samba/options.mk
+++ b/net/samba/options.mk
@@ -9,7 +9,11 @@
 #
 PKG_OPTIONS_VAR=       PKG_OPTIONS.samba
 PKG_SUPPORTED_OPTIONS= ads cups fam ldap pam winbind
-PKG_SUGGESTED_OPTIONS= ads ldap pam winbind
+PKG_SUGGESTED_OPTIONS= ldap pam winbind
+
+.if ${OPSYS} != "Darwin"
+PKG_SUGGESTED_OPTIONS+=        ads
+.endif



Home | Main Index | Thread Index | Old Index