From owner-svn-ports-branches@freebsd.org Wed Jul 27 19:11:52 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 009BCBA5BC6; Wed, 27 Jul 2016 19:11:52 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1C931C82; Wed, 27 Jul 2016 19:11:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6RJBoKA059831; Wed, 27 Jul 2016 19:11:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6RJBoBw059830; Wed, 27 Jul 2016 19:11:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607271911.u6RJBoBw059830@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 27 Jul 2016 19:11:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419191 - branches/2016Q3/net/netatalk3 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 19:11:52 -0000 Author: feld Date: Wed Jul 27 19:11:50 2016 New Revision: 419191 URL: https://svnweb.freebsd.org/changeset/ports/419191 Log: MFH: r419119 Remove -L from CFLAGS (and add it to LDFLAGS) to fix a build issue on 10.1. PR: 211366 Approved by: ports-secteam (with hat) Modified: branches/2016Q3/net/netatalk3/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/netatalk3/Makefile ============================================================================== --- branches/2016Q3/net/netatalk3/Makefile Wed Jul 27 17:24:39 2016 (r419190) +++ branches/2016Q3/net/netatalk3/Makefile Wed Jul 27 19:11:50 2016 (r419191) @@ -84,21 +84,24 @@ SUB_LIST+= ZEROCONF="" .if ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+= --enable-zeroconf=${LOCALBASE} -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib LIB_DEPENDS+= libavahi-client.so:net/avahi-app SUB_LIST+= ZEROCONF="avahi_daemon" .endif .if ${PORT_OPTIONS:MMDNSRESPONDER} CONFIGURE_ARGS+= --enable-zeroconf=${LOCALBASE} -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib LIB_DEPENDS+= libdns_sd.so:net/mDNSResponder SUB_LIST+= ZEROCONF="mdnsd" .endif .if ${PORT_OPTIONS:MLDAP} CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib USE_OPENLDAP= yes .else CONFIGURE_ARGS+= --without-ldap