• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bsd/H20-Mar-2009-1,311722

doc/H03-May-2022-7,4716,950

dst/H20-Mar-2009-2,7531,604

include/H03-May-2022-4,0372,701

inet/H20-Mar-2009-2,5281,532

irs/H03-May-2022-23,65816,564

isc/H20-Mar-2009-10,4788,584

make/H20-Mar-2009-372246

nameser/H20-Mar-2009-4,6993,373

port/H20-Mar-2009-5,6431,900

resolv/H20-Mar-2009-7,1595,131

tests/H20-Mar-2009-2,2151,529

CHANGESH A D20-Mar-20091.8 KiB5036

COPYRIGHTH A D20-Jan-2009860 1713

Makefile.inH A D03-Mar-20095.1 KiB14091

READMEH A D28-Jan-20093.8 KiB12692

aclocal.m4H A D19-Sep-200827 31

apiH A D03-Mar-200944 43

config.guessH A D19-Sep-200843.9 KiB1,5271,315

config.h.inH A D26-Feb-20081.5 KiB6959

config.subH A D19-Sep-200832.9 KiB1,6741,529

config.threads.inH A D19-Sep-20084.3 KiB178167

configureH A D05-Mar-20091,024 KiB35,43929,068

configure.inH A D05-Mar-200969.3 KiB2,8982,724

install-shH A D19-Sep-20085.4 KiB251152

libtool.m4H A D21-Jan-2009232.9 KiB6,6575,990

ltmain.shH A D21-Jan-2009196.4 KiB7,0135,545

mkinstalldirsH A D06-Jul-2001727 4123

port_after.h.inH A D28-Feb-200813.5 KiB527452

port_before.h.inH A D28-Feb-20083.8 KiB193167

versionH A D20-Mar-200985 97

README

1Introduction
2
3	ISC's libbind provides the standard resolver library,
4	along with header files and documentation, for communicating
5	with domain name servers, retrieving network host entries
6	from /etc/hosts or via DNS, converting CIDR network addresses,
7	perform Hesiod information lookups, retrieve network entries
8	from /etc/networks, implement TSIG transaction/request
9	security of DNS messages, perform name-to-address and
10	address-to-name translations, utilize /etc/resolv.conf
11	for resolver configuration.
12
13	It contains many of the same historical functions and headers
14	included with many Unix operating systems.
15
16	Originally written for BIND 8, it was included in BIND 9 as
17	optionally-compiled code through release 9.5.  It has been
18	removed from subsequent releases of BIND 9 and is now
19	provided as a separate package.
20
21Building
22
23	The libbind library requires a system with an ANSI C compiler
24	and basic POSIX support.
25
26	To build, just
27
28		./configure
29		make
30
31	Several environment variables that can be set before running
32	configure will affect compilation:
33
34	    CC
35		The C compiler to use.	configure tries to figure
36		out the right one for supported systems.
37
38	    CFLAGS
39		C compiler flags.  Defaults to include -g and/or -O2
40		as supported by the compiler.
41
42	    STD_CINCLUDES
43		System header file directories.	 Can be used to specify
44		where add-on thread or IPv6 support is, for example.
45		Defaults to empty string.
46
47	    STD_CDEFINES
48		Any additional preprocessor symbols you want defined.
49		Defaults to empty string.
50
51		Possible settings:
52		Change the default syslog facility of named/lwresd.
53		  -DISC_FACILITY=LOG_LOCAL0
54		Enable DNSSEC signature chasing support in dig.
55		  -DDIG_SIGCHASE=1 (sets -DDIG_SIGCHASE_TD=1 and
56				    -DDIG_SIGCHASE_BU=1)
57		Disable dropping queries from particular well known ports.
58		  -DNS_CLIENT_DROPPORT=0
59		Sibling glue checking in named-checkzone is enabled by default.
60		To disable the default check set.  -DCHECK_SIBLING=0
61		named-checkzone checks out-of-zone addresses by default.
62		To disable this default set.  -DCHECK_LOCAL=0
63		Enable workaround for Solaris kernel bug about /dev/poll
64		  -DISC_SOCKET_USE_POLLWATCH=1
65		  The watch timeout is also configurable, e.g.,
66		  -DISC_SOCKET_POLLWATCH_TIMEOUT=20
67
68	    LDFLAGS
69		Linker flags. Defaults to empty string.
70
71	The following need to be set when cross compiling.
72
73	    BUILD_CC
74		The native C compiler.
75	    BUILD_CFLAGS (optional)
76	    BUILD_CPPFLAGS (optional)
77		Possible Settings:
78		-DNEED_OPTARG=1		(optarg is not declared in <unistd.h>)
79	    BUILD_LDFLAGS (optional)
80	    BUILD_LIBS (optional)
81
82	"make install" will install the library.  By default, installation
83	is into /usr/local, but this can be changed with the "--prefix"
84	option when running "configure".
85
86	To see additional configure options, run "configure --help".
87
88	If you need to re-run configure please run "make distclean" first.
89	This will ensure that all the option changes take.
90
91Notes on Usage
92
93        - Installing both libbind and BIND 9 on the same system
94          will produce two incompatible header files with similar
95          names: $PREFIX/include/isc/list.h (from BIND 9) and
96          $PREFIX/include/bind/isc/list.h (from libbind).  When
97          compiling code against libbind, be sure to set -I flags
98          appropriately.
99
100Documentation
101
102	Man pages for libbind routines, in *roff and plaintext format,
103	are included with the release.
104
105Bug Reports and Mailing Lists
106
107	Bugs reports should be sent to
108
109		libbind-bugs@isc.org
110
111	Discussions of libbind can be send to the BIND Users mailing
112	list.  To subscribe, send mail to:
113
114		bind-users-subscribe@isc.org
115
116	Archives of that list can be found at:
117
118		https://lists.isc.org/pipermail/bind-users/
119
120	If you're planning on making changes to the libbind source
121	code, you might want to join the BIND Workers mailing list.
122	To subscribe, send mail to:
123
124		bind-workers-subscribe@isc.org
125
126