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)
This commit is contained in:
parent
a69e05cd98
commit
f874dabf1a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/branches/2016Q3/; revision=419191
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue