http://svnweb.freebsd.org/changeset/ports/335935 After this commits mail/postfix* ports link to libcdb.so dynamically when built with CDB=on. Proposed patch sets library dependencies to current state. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->sahil Over to maintainer (via the GNATS Auto Assign Tool)
Author: pawel Date: Tue Dec 10 18:29:23 2013 New Revision: 336075 URL: http://svnweb.freebsd.org/changeset/ports/336075 Log: Links dynamically to libcdb after databases/tinycdb update PR: ports/184666 Submitted by: me Approved by: bapt (portmgr) Modified: head/mail/postfix-current/Makefile head/mail/postfix/Makefile head/mail/postfix27/Makefile head/mail/postfix28/Makefile head/mail/postfix29/Makefile Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Tue Dec 10 18:16:51 2013 (r336074) +++ head/mail/postfix-current/Makefile Tue Dec 10 18:29:23 2013 (r336075) @@ -216,7 +216,7 @@ POSTFIX_CCARGS+= -I${LOCALBASE}/include/ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Tue Dec 10 18:16:51 2013 (r336074) +++ head/mail/postfix/Makefile Tue Dec 10 18:29:23 2013 (r336075) @@ -218,7 +218,7 @@ POSTFIX_CCARGS+= -I${LOCALBASE}/include/ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Modified: head/mail/postfix27/Makefile ============================================================================== --- head/mail/postfix27/Makefile Tue Dec 10 18:16:51 2013 (r336074) +++ head/mail/postfix27/Makefile Tue Dec 10 18:29:23 2013 (r336075) @@ -198,7 +198,7 @@ _REQUIRE+= slapd .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Modified: head/mail/postfix28/Makefile ============================================================================== --- head/mail/postfix28/Makefile Tue Dec 10 18:16:51 2013 (r336074) +++ head/mail/postfix28/Makefile Tue Dec 10 18:29:23 2013 (r336075) @@ -220,7 +220,7 @@ POSTFIX_CCARGS+= -I${LOCALBASE}/include/ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Modified: head/mail/postfix29/Makefile ============================================================================== --- head/mail/postfix29/Makefile Tue Dec 10 18:16:51 2013 (r336074) +++ head/mail/postfix29/Makefile Tue Dec 10 18:29:23 2013 (r336075) @@ -220,7 +220,7 @@ POSTFIX_CCARGS+= -I${LOCALBASE}/include/ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!