1If you build NSD directly from the Subversion repository, you will need the 2(gnu) autotools to generate the configure script. 3 4On most systems, this can simply be done by using autoreconf: 5 6autoreconf -fi 7 8This will call autoconf, autoheader, aclocal etc. After this you can build 9normally with configure and make, see the general README for further 10information on this. 11 12Some systems do not have a symlink to separate versions, so you will have to 13use the specific version name. It should work with at least 2.53 and 2.59. 14 15The actual executable name may differ on various systems, most of the times 16it is either called autoreconf-2.59 or autoreconf259 17 18 19Some systems also do not have a standard aclocal link, in which case you 20will have to tell autoreconf what aclocal executable to use. This can be 21done by setting the ACLOCAL environment variable. It should work with 22aclocal 1.4, 1.5 and 1.9. 23 24Examples of complete commands: 25 26ACLOCAL=aclocal19 autoreconf259 27 28ACLOCAL=aclocal-1.9 autoreconf-2.59 29 30