Author: jhibbits
Date: Fri Mar 11 20:04:32 2016
New Revision: 296677
URL: https://svnweb.freebsd.org/changeset/base/296677

Log:
  Add to CFLAGS, rather than replacing.
  
  This allows additional CFLAGS, as set in bsd.cpu.mk, to go through.

Modified:
  head/lib/libunbound/Makefile
  head/usr.sbin/unbound/anchor/Makefile
  head/usr.sbin/unbound/checkconf/Makefile
  head/usr.sbin/unbound/control/Makefile
  head/usr.sbin/unbound/daemon/Makefile

Modified: head/lib/libunbound/Makefile
==============================================================================
--- head/lib/libunbound/Makefile        Fri Mar 11 19:28:43 2016        
(r296676)
+++ head/lib/libunbound/Makefile        Fri Mar 11 20:04:32 2016        
(r296677)
@@ -10,7 +10,7 @@ UNBOUNDDIR= ${.CURDIR}/../../contrib/unb
 LIB=   unbound
 PRIVATELIB=
 
-CFLAGS= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR}
+CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR}
 
 SRCS=  alloc.c as112.c autotrust.c config_file.c configlexer.l configparser.y \
        context.c dname.c dns.c dns64.c dnstree.c fptr_wlist.c infra.c \

Modified: head/usr.sbin/unbound/anchor/Makefile
==============================================================================
--- head/usr.sbin/unbound/anchor/Makefile       Fri Mar 11 19:28:43 2016        
(r296676)
+++ head/usr.sbin/unbound/anchor/Makefile       Fri Mar 11 20:04:32 2016        
(r296677)
@@ -9,7 +9,7 @@ EXPATDIR= ${.CURDIR}/../../../contrib/ex
 
 PROG=  unbound-anchor
 SRCS=  unbound-anchor.c
-CFLAGS=        -I${UNBOUNDDIR} -I${LDNSDIR} -I${EXPATDIR}/lib
+CFLAGS+=       -I${UNBOUNDDIR} -I${LDNSDIR} -I${EXPATDIR}/lib
 LIBADD=        unbound bsdxml ssl crypto pthread
 MAN=   unbound-anchor.8
 

Modified: head/usr.sbin/unbound/checkconf/Makefile
==============================================================================
--- head/usr.sbin/unbound/checkconf/Makefile    Fri Mar 11 19:28:43 2016        
(r296676)
+++ head/usr.sbin/unbound/checkconf/Makefile    Fri Mar 11 20:04:32 2016        
(r296677)
@@ -8,7 +8,7 @@ UNBOUNDDIR= ${.CURDIR}/../../../contrib/
 
 PROG=  unbound-checkconf
 SRCS=  unbound-checkconf.c worker_cb.c
-CFLAGS=        -I${UNBOUNDDIR} -I${LDNSDIR}
+CFLAGS+=       -I${UNBOUNDDIR} -I${LDNSDIR}
 LIBADD=        unbound pthread
 MAN=   unbound-checkconf.8
 

Modified: head/usr.sbin/unbound/control/Makefile
==============================================================================
--- head/usr.sbin/unbound/control/Makefile      Fri Mar 11 19:28:43 2016        
(r296676)
+++ head/usr.sbin/unbound/control/Makefile      Fri Mar 11 20:04:32 2016        
(r296677)
@@ -8,7 +8,7 @@ UNBOUNDDIR= ${.CURDIR}/../../../contrib/
 
 PROG=  unbound-control
 SRCS=  unbound-control.c worker_cb.c
-CFLAGS=        -I${UNBOUNDDIR} -I${LDNSDIR}
+CFLAGS+=       -I${UNBOUNDDIR} -I${LDNSDIR}
 LIBADD=        unbound crypto ssl pthread
 MAN=   unbound-control.8
 

Modified: head/usr.sbin/unbound/daemon/Makefile
==============================================================================
--- head/usr.sbin/unbound/daemon/Makefile       Fri Mar 11 19:28:43 2016        
(r296676)
+++ head/usr.sbin/unbound/daemon/Makefile       Fri Mar 11 20:04:32 2016        
(r296677)
@@ -8,7 +8,7 @@ UNBOUNDDIR= ${.CURDIR}/../../../contrib/
 
 PROG=  unbound
 SRCS=  acl_list.c cachedump.c daemon.c remote.c stats.c unbound.c worker.c
-CFLAGS=        -I${UNBOUNDDIR} -I${LDNSDIR}
+CFLAGS+=       -I${UNBOUNDDIR} -I${LDNSDIR}
 LIBADD=        unbound util ssl crypto pthread
 MAN=   unbound.8 unbound.conf.5
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to