search for: enable_mad

Displaying 7 results from an estimated 7 matches for "enable_mad".

Did you mean: enable_mask
2007 Oct 25
0
[PATCH] Fix logic in mad detection
...12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index 918de8f..9c0576e 100644 --- a/configure.ac +++ b/configure.ac @@ -189,19 +189,19 @@ fi AC_ARG_ENABLE(mad, AS_HELP_STRING([--enable-mad], [enable mad audio (default=yes)])], - enable_mad=$enableval, - enable_mad="yes") + enable_mad=$enableval) -if test "$enable_mad" = "yes"; then +if test "$enable_mad" != "no"; then AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no"...
2007 Mar 19
0
2 commits - configure.ac
...finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no") -AC_SUBST(MAD_LIBS) -if test "x$HAVE_MAD" = xyes; then - AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled]) +AC_ARG_ENABLE(mad, + AS_HELP_STRING([--enable-mad], + [enable mad audio (default=yes)])], + enable_mad=$enableval, + enable_mad="yes") + +if test "$enable_mad" = "yes"; then + AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no") + AC_SUBST(MAD_LIBS) + if test "x$HAVE_MAD" = xyes; then + AC_DEFINE...
2007 Oct 28
0
9 commits - configure.ac libswfdec/swfdec_as_context.c libswfdec/swfdec_audio_internal.h libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_sound.c
...backends in default configure diff --git a/configure.ac b/configure.ac index 296b09b..4f164b0 100644 --- a/configure.ac +++ b/configure.ac @@ -188,9 +188,9 @@ fi AC_ARG_ENABLE(mad, AS_HELP_STRING([--enable-mad], - [enable mad audio (default=yes)])], + [enable mad audio (default=no)])], enable_mad=$enableval, - enable_mad="yes") + enable_mad="no") if test "$enable_mad" = "yes"; then AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no") @@ -211,9 +211,9 @@ dnl So you'll have to upda...
2007 Mar 20
3
configure.ac
...c133d9d4b183e) Author: Benjamin Otte <otte@gnome.org> Date: Tue Mar 20 19:56:49 2007 +0100 Output some info on what packages might be missing diff --git a/configure.ac b/configure.ac index d4a48c1..e640a78 100644 --- a/configure.ac +++ b/configure.ac @@ -151,7 +151,7 @@ if test "$enable_mad" = "yes"; then if test "x$HAVE_MAD" = xyes; then AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled]) else - AC_MSG_ERROR([Couldn't find mad.]) + AC_MSG_ERROR([Couldn't find mad. You might need to install the libmad0-dev package.]) fi else AC_MSG_WARN...
2007 Jul 07
1
Compiling swfdec without GTK
...But before that I am planning to compile it on my x86 machine without GTK support. I have already compiled it with GTK. But if I disable GTK then I am getting error messages while compiling test directory. I have used following configuration options: ./configure enable_shared=no enable_static=yes enable_mad=no enable_gtk_doc=no enable_ffmpeg=no enable_gtk=no enable_gnome_vfs=no enable_gstreamer=no with_audio=none Following are the error messages: make[3]: Entering directory `/home/FlashLibs/swfdec-0.4.5/test' if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall...
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
...Benjamin Otte <otte at gnome.org> Date: Tue Nov 27 09:32:19 2007 +0100 test for mad with pkg-config before trying it with AC_CHECK_LIB diff --git a/configure.ac b/configure.ac index 924aa4d..bb86e8f 100644 --- a/configure.ac +++ b/configure.ac @@ -206,7 +206,12 @@ AC_ARG_ENABLE(mad, enable_mad="no") if test "$enable_mad" = "yes"; then - AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no") + PKG_CHECK_EXISTS([mad],[ + MAD_VER=0.15.0 + PKG_CHECK_MODULES(MAD, mad >= $MAD...
2007 Oct 26
0
6 commits - configure.ac libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec_video.c player/swfplay.c
...dbeaec954eb Author: Benjamin Otte <otte at gnome.org> Date: Fri Oct 26 08:48:55 2007 +0200 Don't scare people about disabled dependencies diff --git a/configure.ac b/configure.ac index 97d474b..2dc0eed 100644 --- a/configure.ac +++ b/configure.ac @@ -201,7 +201,7 @@ if test "$enable_mad" = "yes"; then AC_MSG_ERROR([Couldn't find mad. You might need to install the libmad0-dev package.]) fi else - AC_MSG_WARN([*** mad audio support was not enabled. ***]) + AC_MSG_NOTICE([mad audio support was not enabled.]) fi AM_CONDITIONAL(HAVE_MAD, [test "x$HAVE_M...