Date: Tue, 13 Dec 2016 18:01:07 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 215283] net/openldap24-sasl-client: GSSAPI support missing runtime dependency Message-ID: <bug-215283-13@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215283 Bug ID: 215283 Summary: net/openldap24-sasl-client: GSSAPI support missing runtime dependency Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: delphij@FreeBSD.org Reporter: wollman@FreeBSD.org Flags: maintainer-feedback?(delphij@FreeBSD.org) Assignee: delphij@FreeBSD.org The branch of the net/openldap24-server Makefile that pulls in cyrus-sasl-gssapi as a RUN_DEPENDS only applies to server builds and not to= the client. Both sides need this package for GSSAPI support. Quick patch that fixes it (beware cut-and-paste tab mangling): --- Makefile (revision 428456) +++ Makefile (working copy) @@ -138,7 +138,10 @@ .if ${CLIENT_ONLY} =3D=3D sasl PORT_OPTIONS+=3D SASL +.if ${PORT_OPTIONS:MGSSAPI} +RUN_DEPENDS+=3D cyrus-sasl-gssapi>0:security/cyrus-sasl2-gssapi .endif +.endif .if defined(USE_OPENLDAP) BROKEN=3D you have USE_OPENLDAP variable defined ei= ther in environment or in make(1) arguments; please undefine and try again .endif --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-215283-13>