From 1f243835b5b81bfd6b9e5f666730965fe5d60ed6 Mon Sep 17 00:00:00 2001 From: asmodai Date: Sun, 28 Jan 2001 23:00:22 +0000 Subject: Virgin import of BIND v8.2.3-REL --- contrib/bind/port/freebsd/Makefile | 6 +++--- contrib/bind/port/freebsd/include/Makefile | 4 ++-- contrib/bind/port/freebsd/include/port_after.h | 4 ++++ 3 files changed, 9 insertions(+), 5 deletions(-) (limited to 'contrib/bind/port/freebsd') diff --git a/contrib/bind/port/freebsd/Makefile b/contrib/bind/port/freebsd/Makefile index 2f5b121..d6c0cf0 100644 --- a/contrib/bind/port/freebsd/Makefile +++ b/contrib/bind/port/freebsd/Makefile @@ -13,7 +13,7 @@ # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS # SOFTWARE. -# $Id: Makefile,v 1.8 1999/02/22 02:48:01 vixie Exp $ +# $Id: Makefile,v 1.9 2000/11/21 12:55:03 marka Exp $ # these are only appropriate for BSD 4.4 or derivatives, and are used in # development. normal builds will be done in the top level directory and @@ -47,7 +47,7 @@ MARGS= DESTDIR="${DESTDIR}" DESTINC="${DESTINC}" INSTALL="${INSTALL}" all depend clean distclean install:: @for x in ${SUBDIRS}; do \ - (cd $$x; pwd; ${MAKE} ${MARGS} $@); \ + (cd $$x; pwd; ${MAKE} ${MARGS} $@) || exit 1; \ done all:: ${LIBBIND} @@ -74,7 +74,7 @@ links: FRC @set -e; for x in ${SUBDIRS}; do \ ( mkdir $$x; cd $$x; pwd; ln -s ../SRC/$$x SRC; \ cp SRC/Makefile Makefile; chmod +w Makefile; \ - ${MAKE} ${MARGS} links ); \ + ${MAKE} ${MARGS} links ) || exit 1; \ done install:: FRC diff --git a/contrib/bind/port/freebsd/include/Makefile b/contrib/bind/port/freebsd/include/Makefile index 40fe3f8..9176a2d 100644 --- a/contrib/bind/port/freebsd/include/Makefile +++ b/contrib/bind/port/freebsd/include/Makefile @@ -62,7 +62,7 @@ MARGS= DESTDIR="${DESTDIR}" DESTINC="${DESTINC}" INSTALL="${INSTALL}" all depend clean distclean install:: @for x in ${SUBDIRS}; do \ - (cd $$x; pwd; ${MAKE} ${MARGS} $@); \ + (cd $$x; pwd; ${MAKE} ${MARGS} $@) || exit 1; \ done all depend:: @@ -79,7 +79,7 @@ links: FRC @set -e; for x in ${SUBDIRS}; do \ ( mkdir $$x; cd $$x; pwd; ln -s ../SRC/$$x SRC; \ cp SRC/Makefile Makefile; chmod +w Makefile; \ - ${MAKE} ${MARGS} links ); \ + ${MAKE} ${MARGS} links ) || exit 1; \ done install:: ${DESTDIR}${DESTINC} diff --git a/contrib/bind/port/freebsd/include/port_after.h b/contrib/bind/port/freebsd/include/port_after.h index b1609dd..a05bd0f 100644 --- a/contrib/bind/port/freebsd/include/port_after.h +++ b/contrib/bind/port/freebsd/include/port_after.h @@ -71,4 +71,8 @@ struct sockaddr_in6 { u_int32_t sin6_scope_id; /* set of interfaces for a scope */ }; #endif /* HAS_INET6_STRUCTS */ +#ifndef ISC_FACILITY +#define ISC_FACILITY LOG_DAEMON +#endif + #endif /* ! PORT_AFTER_H */ -- cgit v1.1