Made the configure help message show --disable-xxx as the options for whether or not to build the server or client.

git-svn-id: file:///home/mbr/svn/fwknop/trunk@129 510a4753-2344-4c79-9c09-4d669213fbeb
This commit is contained in:
Damien Stuart 2009-08-09 16:19:50 +00:00
parent 5b3f6f07da
commit 1da9ea0f6b

View File

@ -173,8 +173,8 @@ dnl Decide whether or not to build the client
dnl
want_client=yes
AC_ARG_ENABLE([client],
[AS_HELP_STRING([--enable-client],
[Build the fwknop client @<:@default=yes@:>@])],
[AS_HELP_STRING([--disable-client],
[Do not build the fwknop client @<:@default is to build@:>@])],
[want_client=$enableval],
[])
AM_CONDITIONAL([WANT_CLIENT], [test "$want_client" = yes])
@ -183,8 +183,8 @@ dnl Decide whether or not to build the server
dnl
want_server=yes
AC_ARG_ENABLE([server],
[AS_HELP_STRING([--enable-server],
[Build the fwknop server @<:@default=yes@:>@])],
[AS_HELP_STRING([--disable-server],
[Do not build the fwknop server @<:@default is to build@:>@])],
[want_server=$enableval],
[])
AM_CONDITIONAL([WANT_SERVER], [test "$want_server" = yes])