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/theora.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/theora.m4')
-rw-r--r-- | m4/theora.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/theora.m4 b/m4/theora.m4 index d62547ee4..9118f47cd 100644 --- a/m4/theora.m4 +++ b/m4/theora.m4 @@ -10,8 +10,8 @@ AC_DEFUN([AM_PATH_THEORA], [dnl dnl Get the cflags and libraries dnl -AC_ARG_WITH(theora-prefix,[ --with-theora-prefix=PFX Prefix where libtheora is installed (optional)], theora_prefix="$withval", theora_prefix="") -AC_ARG_ENABLE(theoratest, [ --disable-theoratest Do not try to compile and run a test Vorbis program],, enable_theoratest=yes) +AC_ARG_WITH(theora-prefix, AC_HELP_STRING([--with-theora-prefix=DIR], [prefix where libtheora is installed (optional)]), theora_prefix="$withval", theora_prefix="") +AC_ARG_ENABLE(theoratest, AC_HELP_STRING([--disable-theoratest], [do not try to compile and run a test Vorbis program]), enable_theoratest=$enableval, enable_theoratest=yes) if test x$theora_prefix != x ; then theora_args="$theora_args --prefix=$theora_prefix" |