From 2a590fe9882d8ed506bfa8cb2decb273f0deae6e Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Mon, 22 Oct 2001 23:00:21 +0000 Subject: [PATCH] created --- doc/dev/autoconf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/dev/autoconf diff --git a/doc/dev/autoconf b/doc/dev/autoconf new file mode 100644 index 0000000000..0d156bf97b --- /dev/null +++ b/doc/dev/autoconf @@ -0,0 +1,17 @@ +Copyright (C) 2000, 2001 Internet Software Consortium. +See COPYRIGHT in the source root or http://isc.org/copyright.html for terms. + +$Id: autoconf,v 1.1 2001/10/22 23:00:21 gson Exp $ + +Here are some hints on how to use autoconf correctly when doing +BIND 9 development. + +Never edit the configure script directly. Edit configure.in, commit +the changes, run "autoconf", and commit the new configure. Doing two +separate commits ensures that the version numbers embedded in the +configure script are correct. + +Don't edit config.h.in directly. Instead, run "autoheader". If it +complains about missing definitions, add them to acconfig.h, rerun +autoheader, and commit the generated config.h.in. +