Displaying 5 results from an estimated 5 matches for "enable_gstreamer".
2007 Apr 17
0
3 commits - configure.ac libswfdec/swfdec_loader.c libswfdec/swfdec_movie.h
...-dynamic. That causes the Javascript symbols to
be exported. And that in turn causes the mozilla plugin to fail due to symbol
clashes.
diff --git a/configure.ac b/configure.ac
index d26278d..fe0ffa8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -211,8 +211,7 @@ AC_ARG_ENABLE(gstreamer,
enable_gstreamer="yes")
if test "$enable_gstreamer" = "yes"; then
- dnl I used my own version here, it might work with lower versions
- GST_REQUIRED=0.10.10
+ GST_REQUIRED=0.10.11
PKG_CHECK_MODULES(GST, gstreamer-0.10 >= $GST_REQUIRED, HAVE_GST=yes, HAVE_GST=no)
if test "...
2007 Mar 20
3
configure.ac
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
New commits:
diff-tree 3101705919f2a1272a8222ac0cce54f24b34193f (from b5d3509c3db17551aa138c21ee9c133d9d4b183e)
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
2007 Apr 05
0
configure.ac libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_gst.c
...figure.ac
+++ b/configure.ac
@@ -204,6 +204,26 @@ else
AC_MSG_WARN([*** ffmpeg support was not enabled. ***])
fi
AM_CONDITIONAL(HAVE_FFMPEG, [test "x$HAVE_FFMPEG" = xyes])
+AC_ARG_ENABLE(gstreamer,
+ AS_HELP_STRING([--enable-gstreamer],
+ [enable GStreamer support (default=no)])],
+ enable_gstreamer=$enableval,
+ enable_gstreamer="no")
+
+if test "$enable_gstreamer" = "yes"; then
+ dnl I used my own version here, it might work with lower versions
+ GST_REQUIRED=0.10.10
+ PKG_CHECK_MODULES(GST, gstreamer-0.10 >= $GST_REQUIRED, HAVE_GST=yes, HAVE_GST=no)
+ if tes...
2007 Jul 07
1
Compiling swfdec without GTK
...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 -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -I.. -I/usr/include/glib-2...
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
...libavcodec-dev and libswscale-dev packages.])
fi
else
- AC_MSG_WARN([*** ffmpeg support was not enabled. ***])
+ AC_MSG_NOTICE([ffmpeg support was not enabled.])
fi
AM_CONDITIONAL(HAVE_FFMPEG, [test "x$HAVE_FFMPEG" = xyes])
AC_ARG_ENABLE(gstreamer,
@@ -243,7 +243,7 @@ if test "$enable_gstreamer" = "yes"; then
AC_MSG_ERROR([Couldn't find GStreamer $GST_REQUIRED.])
fi
else
- AC_MSG_WARN([*** GStreamer support was not enabled. ***])
+ AC_MSG_NOTICE([GStreamer support was not enabled.])
fi
AM_CONDITIONAL(HAVE_GST, [test "x$HAVE_GST" = xyes])
@@ -262,7 +...