chiark / gitweb /
+ * README updated (from www home page).
[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-1999 Ian Jackson <ian@davenant.greenend.org.uk>
39  Copyright (C) 1999 Tony Finch <dot@dotat.at>
40
41 adns is free software; you can redistribute it and/or modify it under
42 the terms of the GNU General Public License as published by the Free
43 Software Foundation; either version 2 of the License, or (at your
44 option) any later version.
45
46 This program is distributed in the hope that it will be useful, but
47 WITHOUT ANY WARRANTY; without even the implied warranty of
48 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
49 General Public License for more details.
50
51 You should have received a copy of the GNU General Public License
52 along with userv as the file COPYING; if not, email me at the address
53 above or write to the Free Software Foundation, 59 Temple Place -
54 Suite 330, Boston, MA 02111-1307, USA.
55
56 # Local variables:
57 # mode: text
58 # End: