configure.ac: use AC_HELP_STRING

Use AC_HELP_STRING to format WITH options.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt 2015-03-14 15:48:55 +01:00
parent 51a15728ea
commit 2d3cf0ae02
1 changed files with 7 additions and 2 deletions

View File

@ -27,10 +27,15 @@ AC_HELP_STRING([--enable-webless],
AC_SUBST(WEBLESS)
AM_CONDITIONAL(WEBLESSCOND, test x$WEBLESS = xtrue)
AC_ARG_WITH(webdir,[ --with-webdir=DIR use DIR to look for html files for the web-interface], [WEBDIR="$withval"])
AC_ARG_WITH(webdir,
AC_HELP_STRING([--with-webdir=DIR],
[use DIR to look for html files for the web-interface]),
[WEBDIR="$withval"])
AC_SUBST(WEBDIR)
AC_ARG_WITH(bindaddr,[ --with-bindaddr=IP bind listening socket to IP], [BINDADDR="$withval"])
AC_ARG_WITH(bindaddr,
AC_HELP_STRING([--with-bindaddr=IP], [bind listening socket to IP]),
[BINDADDR="$withval"])
AC_SUBST(BINDADDR)
dnl check for libusb