diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:37:17 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:37:17 +0000 |
commit | 2825dabef273ac445dbc64e8717c9b535b35f402 (patch) | |
tree | 698614d84feb46a5aabc9883dff287f078da1afd /m4/xmms.m4 | |
parent | c19a632e3f8f402e89a13cef15d7fdfe411675b2 (diff) | |
download | gst-plugins-bad-2825dabef273ac445dbc64e8717c9b535b35f402.tar.gz gst-plugins-bad-2825dabef273ac445dbc64e8717c9b535b35f402.tar.bz2 gst-plugins-bad-2825dabef273ac445dbc64e8717c9b535b35f402.zip |
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.m4 | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -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" |