diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2004-07-27 09:37:21 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2004-07-27 09:37:21 +0000 | 
| commit | f4951d26a8d395ac0e428aab5335a27c3308b6f5 (patch) | |
| tree | 4e9cc120d9bce6c101efd3377b7d3f4022863c32 | |
| parent | 90a6c1b2e4b6f065bd2c134fa06fe93b174e094d (diff) | |
Make use of AC_HELP_STRING
| -rw-r--r-- | acinclude.m4 | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 27a33e65..6f69c3df 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -25,7 +25,7 @@ AC_DEFUN([AC_PREFIX_BLUEZ], [  ])  AC_DEFUN([AC_PATH_BLUEZ], [ -	AC_ARG_WITH(bluez, [  --with-bluez=DIR        BlueZ library is installed in DIR], [ +	AC_ARG_WITH(bluez, AC_HELP_STRING([--with-bluez=DIR], [BlueZ library is installed in DIR]), [  		if (test "${withval}" = "yes"); then  			bluez_prefix=${prefix}  		else @@ -62,7 +62,7 @@ AC_DEFUN([AC_PATH_BLUEZ], [  ])  AC_DEFUN([AC_PATH_USB], [ -	AC_ARG_WITH(usb, [  --with-usb=DIR          USB library is installed in DIR], [ +	AC_ARG_WITH(usb, AC_HELP_STRING([--with-usb=DIR], [USB library is installed in DIR]), [  		if (test "$withval" = "yes"); then  			usb_prefix=${prefix}  		else @@ -98,12 +98,12 @@ AC_DEFUN([AC_PATH_USB], [  ])  AC_DEFUN([AC_PATH_DBUS], [ -	AC_ARG_ENABLE(dbus, [  --enable-dbus           enable D-BUS support], [ +	AC_ARG_ENABLE(dbus, AC_HELP_STRING([--enable-dbus], [enable D-BUS support]), [  		dbus_enable=${enableval}  		dbus_prefix=${prefix}  	]) -	AC_ARG_WITH(dbus, [  --with-dbus=DIR         D-BUS library is installed in DIR], [ +	AC_ARG_WITH(dbus, AC_HELP_STRING([--with-dbus=DIR], [D-BUS library is installed in DIR]), [  		if (test "${withval}" = "yes"); then  			dbus_prefix=${prefix}  		else @@ -148,12 +148,12 @@ AC_DEFUN([AC_PATH_DBUS], [  ])  AC_DEFUN([AC_PATH_CUPS], [ -	AC_ARG_ENABLE(cups, [  --enable-cups           enable CUPS support], [ +	AC_ARG_ENABLE(cups, AC_HELP_STRING([--enable-cups], [enable CUPS support]), [  		cups_enable=${enableval}  		cups_prefix=${prefix}  	]) -	AC_ARG_WITH(cups, [  --with-cups=DIR         CUPS is installed in DIR], [ +	AC_ARG_WITH(cups, AC_HELP_STRING([--with-cups=DIR], [CUPS is installed in DIR]), [  		if (test "${withval}" = "yes"); then  			cups_prefix=${prefix}  		else  | 
