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 | ea003f663a78858145940d9b363912d57a953bed (patch) | |
tree | e1c96a182d2b2e432f20dceef9603a6053e29163 /m4/vorbis.m4 | |
parent | 6d02b7738beee2fa3ebe8247b4b92d47e613eef0 (diff) |
various AC_HELP_STRING changes
Original commit message from CVS:
various AC_HELP_STRING changes
Diffstat (limited to 'm4/vorbis.m4')
-rw-r--r-- | m4/vorbis.m4 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/m4/vorbis.m4 b/m4/vorbis.m4 index 1c0d8460c..417bb66ab 100644 --- a/m4/vorbis.m4 +++ b/m4/vorbis.m4 @@ -9,8 +9,15 @@ 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=PFX], + [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=yes) if test "x$vorbis_prefix" != "xNONE" ; then vorbis_args="$vorbis_args --prefix=$vorbis_prefix" |