chiark / gitweb /
2b3338f483ebfc5fb52d918af6bcaafe535da2b6
[adns.git] / INSTALL
1 INSTALLATION INSTRUCTIONS for ADNS
2
3    $ ./configure
4    $ make
5    # make install
6
7 Unfortunately, since this is a beta, there is no good documentation
8 yet.  For now, use the comments in the public header file adns.h.
9
10
11 You will find that adns requires a reasonably standard and up to date
12 system.
13
14 In particular, the build system assumes that you have ELF shared
15 libraries.  If you don't then please don't send me patches to support
16 your kind of shared libraries, and don't send me patches to use
17 libtool.  I'm not interested in supporting non-ELF shared libraries.
18 However, if you send me an appropriate patch I'd be willing to make it
19 easy or automatic to disable the ELF shared library arrangements.
20
21 The adnsresfilter utility uses `tsearch' from the C library (a la SVID
22 and X/Open).  If your C library doesn't have tsearch you will find
23 that configure arranges for adnsresfilter not to be built.  To rectify
24 this, install a C library containing tsearch, such as the GNU C
25 library.  It is best if tsearch uses an automatically-balancing tree
26 algorithm, like the glibc version does.  Simple binary trees may
27 perform badly.
28
29 You will probably find that GNU Make is required.
30
31
32 COPYRIGHT
33
34 This file, INSTALL, contains installation instructions and other
35 details for adns.
36
37 adns is
38  Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
39  Copyright (C) 1999 Tony Finch <dot@dotat.at>              [1]
40  Copyright (C) 1991 Massachusetts Institute of Technology  [2]
41
42 adns is free software; you can redistribute it and/or modify it under
43 the terms of the GNU General Public License as published by the Free
44 Software Foundation; either version 2 of the License, or (at your
45 option) any later version.
46
47 This program is distributed in the hope that it will be useful, but
48 WITHOUT ANY WARRANTY; without even the implied warranty of
49 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
50 General Public License for more details.
51
52 You should have received a copy of the GNU General Public License
53 along with userv as the file COPYING; if not, email me at the address
54 above or write to the Free Software Foundation, 59 Temple Place -
55 Suite 330, Boston, MA 02111-1307, USA.
56
57 [1] Tony Finch holds the original copyright on
58     client/adnslogres.c and client/fanftest.c.
59 [2] MIT hold the original copyright on the included install-sh,
60     which came via GNU autoconf.
61
62 # Local variables:
63 # mode: text
64 # End: