Browse Source

[2367] Update help strings

Mukund Sivaraman 11 years ago
parent
commit
a43bb9baba
1 changed files with 4 additions and 4 deletions
  1. 4 4
      configure.ac

+ 4 - 4
configure.ac

@@ -26,8 +26,8 @@ AC_PROG_CXX
 
 
 want_dns=yes
 want_dns=yes
 AC_ARG_ENABLE(dns,
 AC_ARG_ENABLE(dns,
-  [AC_HELP_STRING([--enable-dns],
-  [enable DNS components [default=yes]])],
+  [AC_HELP_STRING([--disable-dns],
+  [disable DNS components])],
   [want_dns=$enableval])
   [want_dns=$enableval])
 AM_CONDITIONAL([WANT_DNS], [test "$want_dns" = "yes"])
 AM_CONDITIONAL([WANT_DNS], [test "$want_dns" = "yes"])
 if test "$want_dns" = "yes"; then
 if test "$want_dns" = "yes"; then
@@ -39,8 +39,8 @@ AC_SUBST(WANT_DNS)
 
 
 want_dhcp=yes
 want_dhcp=yes
 AC_ARG_ENABLE(dhcp,
 AC_ARG_ENABLE(dhcp,
-  [AC_HELP_STRING([--enable-dhcp],
-  [enable DHCP components [default=yes]])],
+  [AC_HELP_STRING([--disable-dhcp],
+  [disable DHCP components])],
   [want_dhcp=$enableval])
   [want_dhcp=$enableval])
 AM_CONDITIONAL([WANT_DHCP], [test "$want_dhcp" = "yes"])
 AM_CONDITIONAL([WANT_DHCP], [test "$want_dhcp" = "yes"])
 if test "$want_dhcp" = "yes"; then
 if test "$want_dhcp" = "yes"; then