aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2009-03-06 02:22:35 -0800
committerAvuton Olrich <avuton@gmail.com>2009-03-06 08:30:59 -0800
commit5da410f913f32ceaccd592e23f2f4fd3f075274f (patch)
treecece9d5475de41cc318615933bad5c31bf56fe86 /m4
parent7c907b9d9d152bf2503e2d9209633c9ece5e56e5 (diff)
configure: trim down the line length for the lame arguments
Diffstat (limited to 'm4')
-rw-r--r--m4/lame.m420
1 files changed, 16 insertions, 4 deletions
diff --git a/m4/lame.m4 b/m4/lame.m4
index 5ebf550d..9ba2c67a 100644
--- a/m4/lame.m4
+++ b/m4/lame.m4
@@ -6,10 +6,22 @@ AC_DEFUN([AM_PATH_LAME],
[dnl
dnl Get the cflags and libraries
dnl
-AC_ARG_WITH(lame,[ --with-lame=PFX Prefix where liblame is installed (optional)], lame_prefix="$withval", lame_prefix="")
-AC_ARG_WITH(lame-libraries,[ --with-lame-libraries=DIR Directory where liblame library is installed (optional)], lame_libraries="$withval", lame_libraries="")
-AC_ARG_WITH(lame-includes,[ --with-lame-includes=DIR Directory where liblame header files are installed (optional)], lame_includes="$withval", lame_includes="")
-AC_ARG_ENABLE(lametest, [ --disable-lametest Do not try to compile and run a test liblame program],, enable_lametest=yes)
+AC_ARG_WITH(lame,
+ AS_HELP_STRING([--with-lame=PFX],
+ [prefix where liblame is installed (optional)]),,
+ lame_prefix="")
+AC_ARG_WITH(lame-libraries,
+ AS_HELP_STRING([--with-lame-libraries=DIR],
+ [directory where liblame library is installed (optional)]),,
+ lame_libraries="")
+AC_ARG_WITH(lame-includes,
+ AS_HELP_STRING([--with-lame-includes=DIR],
+ [directory where liblame header files are installed (optional)]),,
+ lame_includes="")
+AC_ARG_ENABLE(lametest,
+ AS_HELP_STRING([--disable-lametest],
+ [do not try to compile and run a test liblame program]),,
+ enable_lametest=yes)
if test "x$lame_prefix" != "xno" ; then