summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:10:42 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:10:42 +0000
commit6f48e58f2a937e5eeb9adf615efdbbe725ff2ba5 (patch)
tree74b586b91c0e226cb3048b6866b4f706b32cb999 /m4
parent19c013692ce1265ec9419e18da2ebfc06b0ec0df (diff)
AC_HELP_STRING
Original commit message from CVS: AC_HELP_STRING
Diffstat (limited to 'm4')
-rw-r--r--m4/libmikmod.m414
1 files changed, 10 insertions, 4 deletions
diff --git a/m4/libmikmod.m4 b/m4/libmikmod.m4
index 7a77efd7..18c4fc9a 100644
--- a/m4/libmikmod.m4
+++ b/m4/libmikmod.m4
@@ -12,10 +12,16 @@ AC_DEFUN(AM_PATH_LIBMIKMOD,
[dnl
dnl Get the cflags and libraries from the libmikmod-config script
dnl
-AC_ARG_WITH(libmikmod-prefix,[ --with-libmikmod-prefix=PFX Prefix where libmikmod is installed (optional)],
- libmikmod_config_prefix="$withval", libmikmod_config_prefix="")
-AC_ARG_WITH(libmikmod-exec-prefix,[ --with-libmikmod-exec-prefix=PFX Exec prefix where libmikmod is installed (optional)],
- libmikmod_config_exec_prefix="$withval", libmikmod_config_exec_prefix="")
+AC_ARG_WITH(libmikmod-prefix,
+ AC_HELP_STRING([--with-libmikmod-prefix=PFX],
+ [prefix where libmikmod is installed (optional)]),
+ libmikmod_config_prefix="$withval", libmikmod_config_prefix="")
+
+AC_ARG_WITH(libmikmod-exec-prefix,
+ AC_HELP_STRING([--with-libmikmod-exec-prefix=PFX],
+ [exec prefix where libmikmod is installed (optional)]),
+ libmikmod_config_exec_prefix="$withval", libmikmod_config_exec_prefix="")
+
AC_ARG_ENABLE(libmikmodtest,
AC_HELP_STRING([--disable-libmikmodtest],
[Do not try to compile and run a test libmikmod program]),