Update of /cvsroot/dhcp-agent/dhcp-agent
In directory sc8-pr-cvs1:/tmp/cvs-serv1491
Modified Files:
configure.ac
Log Message:
prettied up output from configure
Index: configure.ac
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/configure.ac,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** configure.ac 5 Jul 2003 19:33:27 -0000 1.13
--- configure.ac 6 Jul 2003 17:08:59 -0000 1.14
***************
*** 26,30 ****
AC_ARG_ENABLE(fail-on-warning,
! [ --enable-fail-on-warning fail on compiler warning],
[case "${enableval}" in
yes | y) FAIL_ON_WARNING="yes" ;;
--- 26,31 ----
AC_ARG_ENABLE(fail-on-warning,
! AC_HELP_STRING([--enable-fail-on-warning],
! [fail on compiler warning (default is NO)]),
[case "${enableval}" in
yes | y) FAIL_ON_WARNING="yes" ;;
***************
*** 36,40 ****
dnl allow user to pick HTML documentation
AC_ARG_ENABLE(htmldoc,
! [ --enable-htmldoc Create HTML documentation],
[case "${enableval}" in
yes) htmldoc=true ;;
--- 37,42 ----
dnl allow user to pick HTML documentation
AC_ARG_ENABLE(htmldoc,
! AC_HELP_STRING([--enable-htmldoc],
! [generate html documentation (default is NO)]),
[case "${enableval}" in
yes) htmldoc=true ;;
***************
*** 44,47 ****
--- 46,51 ----
esac],[htmldoc=false])
AM_CONDITIONAL(HTMLDOC, test x$htmldoc = xtrue)
+
+ dnl allow user to pick where dhcp-agent does its work
dnl check for CC, INSTALL, and sane make
|