Building BIND 9

neon (FreeBSD)

./configure --prefix=/usr --sysconfdir=/etc/namedb --localstatedir=/var
make
su
make install

mickey (OpenBSD)

./configure --with-openssl --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
su
make install

helium (HP-UX 10.2)

Okay, I haven't gotten this to work. As usual, building things on HP-UX is a real pain. This system didn't come with a C compiler, I have gcc installed on it. I've gotten stuck in a catch 22 situation with bison needing flex to build and flex needing bison to build, or something like that. Here is what I have so far:

export CC=gcc
./configure --prefix=/usr --sysconfdir=/etc/namedb --localstatedir=/var
make
su
make install

There is also a mistake in one of the Makefiles (lib/dns/sec/dst/Makefile) around line 72. There is a trailing backslash where it doesn't belong, and also some mysterious character afterwards (a non-blank line). Take out the trailing backslash and clear out all the "blank" lines after it.