diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
commit | a5e029f061c56093ab7c61f8e61cd6df60150721 (patch) | |
tree | ea367375020edb29a2bb6cc3e27d62467847a75e /m4/vorbis.m4 | |
parent | 4fb3cbf95de50e6f5f6327e6cf962d3ffcc43d04 (diff) | |
download | xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.gz xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.bz2 |
properly use AC_HELP_STRING, properly use $enableval for AC_ARG_ENABLE
CVS patchset: 6217
CVS date: 2004/03/05 16:34:32
Diffstat (limited to 'm4/vorbis.m4')
-rw-r--r-- | m4/vorbis.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/vorbis.m4 b/m4/vorbis.m4 index 24786ecf4..cefa28980 100644 --- a/m4/vorbis.m4 +++ b/m4/vorbis.m4 @@ -9,8 +9,8 @@ AC_DEFUN([AM_PATH_VORBIS], [dnl dnl Get the cflags and libraries dnl -AC_ARG_WITH(vorbis-prefix,[ --with-vorbis-prefix=PFX Prefix where libvorbis is installed (optional)], vorbis_prefix="$withval", vorbis_prefix="") -AC_ARG_ENABLE(vorbistest, [ --disable-vorbistest Do not try to compile and run a test Vorbis program],, enable_vorbistest=yes) +AC_ARG_WITH(vorbis-prefix, AC_HELP_STRING([--with-vorbis-prefix=DIR], [prefix where libvorbis is installed (optional)]), vorbis_prefix="$withval", vorbis_prefix="") +AC_ARG_ENABLE(vorbistest, AC_HELP_STRING([--disable-vorbistest], [do not try to compile and run a test Vorbis program]), enable_vorbistest=$enableval, enable_vorbistest=yes) if test x$vorbis_prefix != x ; then vorbis_args="$vorbis_args --prefix=$vorbis_prefix" |