summaryrefslogtreecommitdiffstats
path: root/m4/xmms.m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:37:17 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:37:17 +0000
commitea003f663a78858145940d9b363912d57a953bed (patch)
treee1c96a182d2b2e432f20dceef9603a6053e29163 /m4/xmms.m4
parent6d02b7738beee2fa3ebe8247b4b92d47e613eef0 (diff)
various AC_HELP_STRING changes
Original commit message from CVS: various AC_HELP_STRING changes
Diffstat (limited to 'm4/xmms.m4')
-rw-r--r--m4/xmms.m413
1 files changed, 9 insertions, 4 deletions
diff --git a/m4/xmms.m4 b/m4/xmms.m4
index 6d1489bf..de6f4b78 100644
--- a/m4/xmms.m4
+++ b/m4/xmms.m4
@@ -61,10 +61,15 @@ function vercmp(ver1, ver2, ver1arr, ver2arr, \
AC_DEFUN(AM_PATH_XMMS,
[
-AC_ARG_WITH(xmms-prefix,[ --with-xmms-prefix=PFX Prefix where XMMS is installed (optional)],
- xmms_config_prefix="$withval", xmms_config_prefix="")
-AC_ARG_WITH(xmms-exec-prefix,[ --with-xmms-exec-prefix=PFX Exec prefix where XMMS is installed (optional)],
- xmms_config_exec_prefix="$withval", xmms_config_exec_prefix="")
+AC_ARG_WITH(xmms-prefix,
+ AC_HELP_STRING([--with-xmms-prefix=PFX],
+ [prefix where XMMS is installed (optional)]),
+ xmms_config_prefix="$withval", xmms_config_prefix="")
+
+AC_ARG_WITH(xmms-exec-prefix,
+ AC_HELP_STRING([--with-xmms-exec-prefix=PFX],
+ [exec prefix where XMMS is installed (optional)]),
+ xmms_config_exec_prefix="$withval", xmms_config_exec_prefix="")
if test x$xmms_config_exec_prefix != x; then
xmms_config_args="$xmms_config_args --exec-prefix=$xmms_config_exec_prefix"