mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
support running configure in a directory other than the source directory
This commit is contained in:
parent
51ac5c28de
commit
8e6813696a
71 changed files with 134 additions and 46 deletions
|
|
@ -13,7 +13,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.11 2001/07/13 02:38:26 marka Exp $
|
||||
# $Id: Makefile.in,v 1.12 2001/08/09 05:59:34 marka Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -116,3 +116,4 @@ clean distclean::
|
|||
rm -f libbind.@SA@ libbind.la
|
||||
distclean::
|
||||
rm -f config.cache config.h config.log config.status libtool
|
||||
rm -f port_before.h port_after.h
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.5 2001/05/31 05:53:58 marka Exp $
|
||||
# $Id: Makefile.in,v 1.6 2001/08/09 05:59:36 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
DAEMON_OBJS=daemon.@O@
|
||||
STRSEP_OBJS=strsep.@O@
|
||||
|
|
@ -31,6 +34,6 @@ SRCS= daemon.c ftruncate.c gettimeofday.c mktemp.c putenv.c \
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
|
|||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||
AC_DIVERT_POP()dnl
|
||||
|
||||
AC_REVISION($Revision: 1.80 $)
|
||||
AC_REVISION($Revision: 1.81 $)
|
||||
|
||||
AC_INIT(resolv/herror.c)
|
||||
AC_PREREQ(2.13)
|
||||
|
|
@ -1057,52 +1057,54 @@ case "$have_minimum_ifreq" in
|
|||
esac
|
||||
AC_SUBST(HAVE_MINIMUM_IFREQ)
|
||||
|
||||
# PORT_INCLUDE
|
||||
PORT_INCLUDE=port/unknown/include
|
||||
# PORT_DIR
|
||||
PORT_DIR=port/unknown
|
||||
SOLARIS_BITTYPES="#undef NEED_SOLARIS_BITTYPES"
|
||||
BSD_COMP="#undef BSD_COMP"
|
||||
USE_FIONBIO_IOCTL="#undef USE_FIONBIO_IOCTL"
|
||||
case "$host" in
|
||||
*aix3.2*) PORT_INCLUDE="port/aix32/include";;
|
||||
*aix4*) PORT_INCLUDE="port/aix4/include";;
|
||||
*aux3*) PORT_INCLUDE="port/aux3/include";;
|
||||
*-bsdi2*) PORT_INCLUDE="port/bsdos2/include";;
|
||||
*-bsdi*) PORT_INCLUDE="port/bsdos/include";;
|
||||
*-cygwin*) PORT_INCLUDE="port/cygwin/include";;
|
||||
*-darwin*) PORT_INCLUDE="port/darwin/include";;
|
||||
*-osf*) PORT_INCLUDE="port/decunix/include";;
|
||||
*-freebsd*) PORT_INCLUDE="port/freebsd/include";;
|
||||
*-hpux9*) PORT_INCLUDE="port/hpux9/include";;
|
||||
*-hpux10*) PORT_INCLUDE="port/hpux10/include";;
|
||||
*-hpux11*) PORT_INCLUDE="port/hpux/include";;
|
||||
*-irix*) PORT_INCLUDE="port/irix/include";;
|
||||
*-linux*) PORT_INCLUDE="port/linux/include";;
|
||||
*-lynxos*) PORT_INCLUDE="port/lynxos/include";;
|
||||
*-mpe*) PORT_INCLUDE="port/mpe/include";;
|
||||
*-netbsd*) PORT_INCLUDE="port/netbsd/include";;
|
||||
*-next*) PORT_INCLUDE="port/next/include";;
|
||||
*-openbsd*) PORT_INCLUDE="port/openbsd/include";;
|
||||
*-qnx*) PORT_INCLUDE="port/qnx/include";;
|
||||
*-rhapsody*) PORT_INCLUDE="port/rhapsody/include";;
|
||||
*aix3.2*) PORT_DIR="port/aix32";;
|
||||
*aix4*) PORT_DIR="port/aix4";;
|
||||
*aux3*) PORT_DIR="port/aux3";;
|
||||
*-bsdi2*) PORT_DIR="port/bsdos2";;
|
||||
*-bsdi*) PORT_DIR="port/bsdos";;
|
||||
*-cygwin*) PORT_DIR="port/cygwin";;
|
||||
*-darwin*) PORT_DIR="port/darwin";;
|
||||
*-osf*) PORT_DIR="port/decunix";;
|
||||
*-freebsd*) PORT_DIR="port/freebsd";;
|
||||
*-hpux9*) PORT_DIR="port/hpux9";;
|
||||
*-hpux10*) PORT_DIR="port/hpux10";;
|
||||
*-hpux11*) PORT_DIR="port/hpux";;
|
||||
*-irix*) PORT_DIR="port/irix";;
|
||||
*-linux*) PORT_DIR="port/linux";;
|
||||
*-lynxos*) PORT_DIR="port/lynxos";;
|
||||
*-mpe*) PORT_DIR="port/mpe";;
|
||||
*-netbsd*) PORT_DIR="port/netbsd";;
|
||||
*-next*) PORT_DIR="port/next";;
|
||||
*-openbsd*) PORT_DIR="port/openbsd";;
|
||||
*-qnx*) PORT_DIR="port/qnx";;
|
||||
*-rhapsody*) PORT_DIR="port/rhapsody";;
|
||||
*-solaris2.[[01234]]*)
|
||||
BSD_COMP="#define BSD_COMP 1"
|
||||
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
|
||||
USE_FIONBIO_IOCTL="#define USE_FIONBIO_IOCTL 1"
|
||||
PORT_INCLUDE="port/solaris/include";;
|
||||
PORT_DIR="port/solaris";;
|
||||
*-solaris2.5*)
|
||||
BSD_COMP="#define BSD_COMP 1"
|
||||
SOLARIS_BITTYPES="#define NEED_SOLARIS_BITTYPES 1"
|
||||
PORT_INCLUDE="port/solaris/include";;
|
||||
PORT_DIR="port/solaris";;
|
||||
*-solaris2*) BSD_COMP="#define BSD_COMP 1"
|
||||
PORT_INCLUDE="port/solaris/include";;
|
||||
*-ultrix*) PORT_INCLUDE="port/ultrix/include";;
|
||||
*-sco-sysv*uw2.0*) PORT_INCLUDE="port/unixware20/include";;
|
||||
*-sco-sysv*uw2.1.2*) PORT_INCLUDE="port/unixware212/include";;
|
||||
*-sco-sysv*uw7*) PORT_INCLUDE="port/unixware7/include";;
|
||||
PORT_DIR="port/solaris";;
|
||||
*-ultrix*) PORT_DIR="port/ultrix";;
|
||||
*-sco-sysv*uw2.0*) PORT_DIR="port/unixware20";;
|
||||
*-sco-sysv*uw2.1.2*) PORT_DIR="port/unixware212";;
|
||||
*-sco-sysv*uw7*) PORT_DIR="port/unixware7";;
|
||||
esac
|
||||
AC_SUBST(BSD_COMP)
|
||||
AC_SUBST(SOLARIS_BITTYPES)
|
||||
AC_SUBST(USE_FIONBIO_IOCTL)
|
||||
AC_SUBST(PORT_DIR)
|
||||
PORT_INCLUDE=${PORT_DIR}/include
|
||||
AC_SUBST(PORT_INCLUDE)
|
||||
|
||||
|
||||
|
|
@ -2257,6 +2259,8 @@ AC_OUTPUT(
|
|||
port_after.h
|
||||
port_before.h
|
||||
resolv/Makefile
|
||||
port/Makefile
|
||||
${PORT_DIR}/Makefile
|
||||
${PORT_INCLUDE}/Makefile
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -13,8 +13,11 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.4 2001/05/31 05:53:59 marka Exp $
|
||||
# $Id: Makefile.in,v 1.5 2001/08/09 05:59:38 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
OBJS= dst_api.@O@ hmac_link.@O@ md5_dgst.@O@ support.@O@
|
||||
|
||||
SRCS= dst_api.c hmac_link.c md5_dgst.c support.c
|
||||
|
|
@ -23,7 +26,7 @@ TARGETS= ${OBJS}
|
|||
|
||||
CRYPTFLAGS= -DCYLINK_DSS -DHMAC_MD5 -DUSE_MD5 -DDNSSAFE
|
||||
|
||||
CINCLUDES= -I.. -I../include ${CRYPTINCL}
|
||||
CINCLUDES= -I.. -I${srcdir}/../include ${CRYPTINCL}
|
||||
CDEFINES= ${CRYPTFLAGS}
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.3 2001/05/31 05:54:02 marka Exp $
|
||||
# $Id: Makefile.in,v 1.4 2001/08/09 05:59:39 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
OBJS= inet_addr.@O@ inet_cidr_ntop.@O@ inet_cidr_pton.@O@ inet_data.@O@ \
|
||||
inet_lnaof.@O@ inet_makeaddr.@O@ inet_net_ntop.@O@ inet_net_pton.@O@ \
|
||||
|
|
@ -27,6 +30,6 @@ SRCS= inet_addr.c inet_cidr_ntop.c inet_cidr_pton.c inet_data.c \
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.6 2001/05/31 05:54:03 marka Exp $
|
||||
# $Id: Makefile.in,v 1.7 2001/08/09 05:59:40 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
WANT_IRS_THREADS_OBJS= gethostent_r.@O@ getnetgrent_r.@O@ \
|
||||
getprotoent_r.@O@ getservent_r.@O@
|
||||
|
|
@ -62,6 +65,6 @@ WANT_IRS_THREADSGR_OBJS=getgrent_r.@O@
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.5 2001/06/21 08:26:13 marka Exp $
|
||||
# $Id: Makefile.in,v 1.6 2001/08/09 05:59:41 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
OBJS= assertions.@O@ base64.@O@ bitncmp.@O@ ctl_clnt.@O@ ctl_p.@O@ \
|
||||
ctl_srvr.@O@ ev_connects.@O@ ev_files.@O@ ev_streams.@O@ \
|
||||
|
|
@ -27,6 +30,6 @@ SRCS= assertions.c base64.c bitncmp.c ctl_clnt.c ctl_p.c \
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.3 2001/05/31 05:54:05 marka Exp $
|
||||
# $Id: Makefile.in,v 1.4 2001/08/09 05:59:43 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
OBJS= ns_date.@O@ ns_name.@O@ ns_netint.@O@ ns_parse.@O@ ns_print.@O@ \
|
||||
ns_samedomain.@O@ ns_sign.@O@ ns_ttl.@O@ ns_verify.@O@
|
||||
|
|
@ -23,6 +26,6 @@ SRCS= ns_date.c ns_name.c ns_netint.c ns_parse.c ns_print.c \
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
1
lib/bind/port/.cvsignore
Normal file
1
lib/bind/port/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/Makefile.in
Normal file
1
lib/bind/port/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/aix32/.cvsignore
Normal file
1
lib/bind/port/aix32/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/aix32/Makefile.in
Normal file
1
lib/bind/port/aix32/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/aix4/.cvsignore
Normal file
1
lib/bind/port/aix4/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/aix4/Makefile.in
Normal file
1
lib/bind/port/aix4/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/aux3/.cvsignore
Normal file
1
lib/bind/port/aux3/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/aux3/Makefile.in
Normal file
1
lib/bind/port/aux3/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/bsdos/.cvsignore
Normal file
1
lib/bind/port/bsdos/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/bsdos/Makefile.in
Normal file
1
lib/bind/port/bsdos/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/bsdos2/.cvsignore
Normal file
1
lib/bind/port/bsdos2/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/bsdos2/Makefile.in
Normal file
1
lib/bind/port/bsdos2/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/darwin/.cvsignore
Normal file
1
lib/bind/port/darwin/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/darwin/Makefile.in
Normal file
1
lib/bind/port/darwin/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/decunix/.cvsignore
Normal file
1
lib/bind/port/decunix/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/decunix/Makefile.in
Normal file
1
lib/bind/port/decunix/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/freebsd/.cvsignore
Normal file
1
lib/bind/port/freebsd/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/freebsd/Makefile.in
Normal file
1
lib/bind/port/freebsd/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/hpux/.cvsignore
Normal file
1
lib/bind/port/hpux/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/hpux/Makefile.in
Normal file
1
lib/bind/port/hpux/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/hpux10/.cvsignore
Normal file
1
lib/bind/port/hpux10/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/hpux10/Makefile.in
Normal file
1
lib/bind/port/hpux10/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/hpux9/.cvsignore
Normal file
1
lib/bind/port/hpux9/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/hpux9/Makefile.in
Normal file
1
lib/bind/port/hpux9/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/irix/.cvsignore
Normal file
1
lib/bind/port/irix/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/irix/Makefile.in
Normal file
1
lib/bind/port/irix/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/linux/.cvsignore
Normal file
1
lib/bind/port/linux/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/linux/Makefile.in
Normal file
1
lib/bind/port/linux/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/lynxos/.cvsignore
Normal file
1
lib/bind/port/lynxos/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/lynxos/Makefile.in
Normal file
1
lib/bind/port/lynxos/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/mpe/.cvsignore
Normal file
1
lib/bind/port/mpe/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/mpe/Makefile.in
Normal file
1
lib/bind/port/mpe/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/netbsd/.cvsignore
Normal file
1
lib/bind/port/netbsd/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/netbsd/Makefile.in
Normal file
1
lib/bind/port/netbsd/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/next/.cvsignore
Normal file
1
lib/bind/port/next/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/next/Makefile.in
Normal file
1
lib/bind/port/next/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/openbsd/.cvsignore
Normal file
1
lib/bind/port/openbsd/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/openbsd/Makefile.in
Normal file
1
lib/bind/port/openbsd/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/prand_conf/.cvsignore
Normal file
1
lib/bind/port/prand_conf/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/prand_conf/Makefile.in
Normal file
1
lib/bind/port/prand_conf/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/qnx/.cvsignore
Normal file
1
lib/bind/port/qnx/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/qnx/Makefile.in
Normal file
1
lib/bind/port/qnx/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/rhapsody/.cvsignore
Normal file
1
lib/bind/port/rhapsody/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/rhapsody/Makefile.in
Normal file
1
lib/bind/port/rhapsody/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/sco42/.cvsignore
Normal file
1
lib/bind/port/sco42/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/sco42/Makefile.in
Normal file
1
lib/bind/port/sco42/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/sco50/.cvsignore
Normal file
1
lib/bind/port/sco50/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/sco50/Makefile.in
Normal file
1
lib/bind/port/sco50/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/solaris/.cvsignore
Normal file
1
lib/bind/port/solaris/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/solaris/Makefile.in
Normal file
1
lib/bind/port/solaris/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/sunos/.cvsignore
Normal file
1
lib/bind/port/sunos/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/sunos/Makefile.in
Normal file
1
lib/bind/port/sunos/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/ultrix/.cvsignore
Normal file
1
lib/bind/port/ultrix/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/ultrix/Makefile.in
Normal file
1
lib/bind/port/ultrix/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/unixware20/.cvsignore
Normal file
1
lib/bind/port/unixware20/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/unixware20/Makefile.in
Normal file
1
lib/bind/port/unixware20/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/unixware212/.cvsignore
Normal file
1
lib/bind/port/unixware212/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/unixware212/Makefile.in
Normal file
1
lib/bind/port/unixware212/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/unixware7/.cvsignore
Normal file
1
lib/bind/port/unixware7/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/unixware7/Makefile.in
Normal file
1
lib/bind/port/unixware7/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
1
lib/bind/port/unknown/.cvsignore
Normal file
1
lib/bind/port/unknown/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
||||
1
lib/bind/port/unknown/Makefile.in
Normal file
1
lib/bind/port/unknown/Makefile.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Copyright (C) 2001 Internet Software Consortium.
|
||||
|
|
@ -13,7 +13,10 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.2 2001/05/31 05:54:07 marka Exp $
|
||||
# $Id: Makefile.in,v 1.3 2001/08/09 05:59:45 marka Exp $
|
||||
|
||||
srcdir= @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
OBJS= herror.@O@ res_comp.@O@ res_data.@O@ res_debug.@O@ \
|
||||
res_findzonecut.@O@ res_init.@O@ res_mkquery.@O@ res_mkupdate.@O@ \
|
||||
|
|
@ -25,7 +28,7 @@ SRCS= herror.c res_comp.c res_data.c res_debug.c \
|
|||
|
||||
TARGETS= ${OBJS}
|
||||
|
||||
CINCLUDES= -I.. -I../include
|
||||
CINCLUDES= -I.. -I${srcdir}/../include
|
||||
CWARNINGS=
|
||||
|
||||
@BIND9_MAKE_RULES@
|
||||
|
|
|
|||
Loading…
Reference in a new issue