CVS commit: src/external/bsd/bind/lib/libdns

2017-05-15 Thread Emmanuel Dreyfus
Module Name:src
Committed By:   manu
Date:   Mon May 15 13:38:34 UTC 2017

Modified Files:
src/external/bsd/bind/lib/libdns: Makefile

Log Message:
Allow building with MKKERBEROS=no


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/bind/lib/libdns/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/bind/lib/libdns/Makefile
diff -u src/external/bsd/bind/lib/libdns/Makefile:1.13 src/external/bsd/bind/lib/libdns/Makefile:1.14
--- src/external/bsd/bind/lib/libdns/Makefile:1.13	Sat Mar  1 03:24:41 2014
+++ src/external/bsd/bind/lib/libdns/Makefile	Mon May 15 13:38:34 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.13 2014/03/01 03:24:41 christos Exp $
+#	$NetBSD: Makefile,v 1.14 2017/05/15 13:38:34 manu Exp $
 
 LIB=dns
 #USE_SHLIBDIR=   yes
@@ -24,9 +24,13 @@ COPTS.${f}.c+=  -Wno-pointer-sign -fno-s
 .endfor
 
 DNSSEC_SRCS=	dst_api.c dst_lib.c dst_parse.c dst_result.c \
-	gssapi_link.c gssapictx.c hmac_link.c key.c openssl_link.c \
+	gssapictx.c hmac_link.c key.c openssl_link.c \
 	openssldh_link.c openssldsa_link.c opensslrsa_link.c \
-	opensslecdsa_link.c opensslgost_link.c spnego.c
+	opensslecdsa_link.c opensslgost_link.c 
+.if ${MKKERBEROS} != "no"
+DNSSEC_SRCS+=	gssapi_link.c spnego.c
+.endif
+
 
 SRCS=	acl.c acache.c adb.c byaddr.c cache.c callbacks.c clientinfo.c \
 	compress.c client.c tsec.c ecdb.c \



CVS commit: src/external/bsd/bind/lib/libdns

2012-08-10 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Aug 10 16:33:41 UTC 2012

Modified Files:
src/external/bsd/bind/lib/libdns: Makefile

Log Message:
Apply options for all compilers.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/bind/lib/libdns/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/bind/lib/libdns/Makefile
diff -u src/external/bsd/bind/lib/libdns/Makefile:1.6 src/external/bsd/bind/lib/libdns/Makefile:1.7
--- src/external/bsd/bind/lib/libdns/Makefile:1.6	Tue Jun  5 00:43:13 2012
+++ src/external/bsd/bind/lib/libdns/Makefile	Fri Aug 10 16:33:41 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2012/06/05 00:43:13 christos Exp $
+#	$NetBSD: Makefile,v 1.7 2012/08/10 16:33:41 joerg Exp $
 
 LIB=dns
 
@@ -12,11 +12,9 @@ DIST=	${IDIST}/lib/dns
 .PATH.c:	${DIST}/unix ${DIST}/sec/dst ${DIST}
 CPPFLAGS+=	-I${BIND_SRCDIR}/include/dns -I${DIST}
 
-.if defined(HAVE_GCC) || defined(HAVE_PCC)
 .for f in lookup byaddr request sdb validator
 COPTS.${f}.c+=  -Wno-pointer-sign -fno-strict-aliasing
 .endfor
-.endif
 
 DNSSEC_SRCS=	dst_api.c dst_lib.c dst_parse.c dst_result.c \
 	gssapi_link.c gssapictx.c hmac_link.c key.c openssl_link.c \