Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/usr.sbin/bind/named Pull up revisions 1.6-1.7 (requeste...



details:   https://anonhg.NetBSD.org/src/rev/9dcc4e001b8e
branches:  netbsd-1-4
changeset: 469822:9dcc4e001b8e
user:      he <he%NetBSD.org@localhost>
date:      Sat Dec 04 17:11:09 1999 +0000

description:
Pull up revisions 1.6-1.7 (requested by christos and veego):
  Update to BIND 8.2.2-P5.

diffstat:

 usr.sbin/bind/named/Makefile |  35 +++++++++++++++++++++++++----------
 1 files changed, 25 insertions(+), 10 deletions(-)

diffs (57 lines):

diff -r 546b8ce0fd64 -r 9dcc4e001b8e usr.sbin/bind/named/Makefile
--- a/usr.sbin/bind/named/Makefile      Sat Dec 04 17:11:05 1999 +0000
+++ b/usr.sbin/bind/named/Makefile      Sat Dec 04 17:11:09 1999 +0000
@@ -1,28 +1,43 @@
-#      $NetBSD: Makefile,v 1.5 1999/03/28 00:28:17 tron Exp $
+#      $NetBSD: Makefile,v 1.5.2.1 1999/12/04 17:11:09 he Exp $
 
-.PATH:         ${.CURDIR}/../man
+.include "../Makefile.inc"
+.PATH:         ${BIND_DIST_DIR}/bin/named \
+               ${BIND_DIST_DIR}/bin/named-bootconf \
+               ${BIND_DIST_DIR}/man
 
-WARNS=         0
 PROG=          named
 HDRS=          db_defs.h db_glob.h ns_defs.h ns_glob.h named.h pathnames.h
 SRCS=          db_dump.c db_load.c db_lookup.c db_save.c db_update.c \
-               db_glue.c ns_parser.y ns_lexer.c ns_parseutil.c \
+               db_glue.c db_ixfr.c db_sec.c db_tsig.c \
+               ns_parser.y ns_lexer.c ns_parseutil.c ns_ctl.c \
                ns_forw.c ns_init.c ns_main.c ns_maint.c ns_req.c \
                ns_resp.c ns_stats.c ns_ncache.c ns_xfr.c ns_glue.c \
-               ns_udp.c ns_config.c ns_update.c tmp_version.c
+               ns_udp.c ns_config.c ns_update.c ns_ixfr.c ns_signal.c \
+               ns_sort.c ns_notify.c tmp_version.c
 CPPFLAGS+=     ${INCLUDE}
 LDADD=         ${LIBRARY}
-CLEANFILES+=   y.tab.h named-bootconf tmp_version.c
-MAN=           ${PROG}.8 named.conf.5 named-bootconf.8
-SCRIPTS=       named-bootconf.sh
+CLEANFILES+=   y.tab.h named-bootconf tmp_version.c pathnames.h
+MAN=           ${PROG}.8 named.conf.5
 
 HOSTNAMECMD=   hostname
 
-tmp_version.c: ${.CURDIR}/version.c Makefile ../Makefile
+tmp_version.c: ${BIND_DIST_DIR}/bin/named/version.c Makefile ../Makefile
        (u=$${USER-root} d=`pwd` h=`${HOSTNAMECMD}` t=`date`; \
        sed -e "s|%WHEN%|$${t}|" -e "s|%VERSION%|"${VER}"|" \
            -e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
-           < ${.CURDIR}/version.c > tmp_version.c)
+           < ${BIND_DIST_DIR}/bin/named/version.c > tmp_version.c)
+
+pathnames.h: ${BIND_DIST_DIR}/bin/named/pathtemplate.h
+       sed -e "s|%DESTETC%|/etc|" -e "s|%DESTSBIN%|/usr/sbin|" \
+           -e "s|%DESTRUN%|/var/run|" -e "s|%DESTEXEC%|/usr/libexec|" \
+           < ${BIND_DIST_DIR}/bin/named/pathtemplate.h > pathnames.h
+
+CLEANFILES+=pathnames.h
+
+# mention explicit dependency, so pathnames.h will appear timely
+db_dump.c: pathnames.h
 
 .include "../../Makefile.inc"
 .include <bsd.prog.mk>
+
+${OBJS}: pathnames.h



Home | Main Index | Thread Index | Old Index