Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jul 2016 10:30:03 +1000
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        Joe Marcus Clarke <marcus@FreeBSD.org>, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, FreeBSD Ports Security Team <ports-secteam@freebsd.org>
Subject:   Re: svn commit: r419119 - head/net/netatalk3
Message-ID:  <1a49f80c-808d-3a5e-7140-500ffae49da2@FreeBSD.org>
In-Reply-To: <201607261542.u6QFgjhr020775@repo.freebsd.org>
References:  <201607261542.u6QFgjhr020775@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 27/07/2016 1:42 AM, Joe Marcus Clarke wrote:
> Author: marcus
> Date: Tue Jul 26 15:42:45 2016
> New Revision: 419119
> URL: https://svnweb.freebsd.org/changeset/ports/419119
> 
> Log:
>   Remove -L from CFLAGS (and add it to LDFLAGS) to fix a build issue on 10.1.

Hi Joe,

Quarterly branch is affected by this too, could you MFH?

>   PR:		211366
> 
> Modified:
>   head/net/netatalk3/Makefile
> 
> Modified: head/net/netatalk3/Makefile
> ==============================================================================
> --- head/net/netatalk3/Makefile	Tue Jul 26 15:38:10 2016	(r419118)
> +++ head/net/netatalk3/Makefile	Tue Jul 26 15:42:45 2016	(r419119)
> @@ -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
> 




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1a49f80c-808d-3a5e-7140-500ffae49da2>