summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-12-16 16:58:59 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-12-16 16:58:59 +0000
commit73d5b4cff4df14a9f8753bca9ac687e8c0a88ee4 (patch)
treebb01e6a8db7abff210619f953f48e093c80f4a8d
parent84ccaf3a8a3afd1a4af7bf716e6b11c37bbf10ca (diff)
downloadgst-plugins-bad-73d5b4cff4df14a9f8753bca9ac687e8c0a88ee4.tar.gz
gst-plugins-bad-73d5b4cff4df14a9f8753bca9ac687e8c0a88ee4.tar.bz2
gst-plugins-bad-73d5b4cff4df14a9f8753bca9ac687e8c0a88ee4.zip
disable gdk_pixbuf by default
Original commit message from CVS: disable gdk_pixbuf by default
-rw-r--r--ChangeLog93
m---------common0
-rw-r--r--configure.ac94
3 files changed, 146 insertions, 41 deletions
diff --git a/ChangeLog b/ChangeLog
index 570035c9..3adb34f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,2 +1,91 @@
-GStreamer does not use changelog files.
-The GStreamer developers use CVS commit messages as the replacement.
+2003-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * configure.ac: disable pixbuf loader by default as requested
+
+2003-12-14 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * configure.ac: make pixbuf loader configurable
+
+2003-12-14 Amaury Jacquot <sxpert@esitcom.org>
+
+ * sys/xvideo/gstximage.c: remove 3 unnecessary X headers
+ * sys/xvideo/gstxvimage.c: same
+ * sys/xvideo/gstxwindow.c: same
+ these problems occur when using the X server from freedesktop.org
+
+2003-12-03 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * common/m4/gst-feature.m4: *** instead of newline when not built
+ * configure.ac: fix X detection when no X stuff present
+ * gst-libs/gst/Makefile.am: put X dependencies inside conditional
+
+2003-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * gst-plugins.spec.in: fix up spec file
+ * gst/debug/Makefile.am:
+ gst/realmedia/Makefile.am: use proper LD_FLAGS for plugins
+
+2003-02-14 Colin Walters <walters@verbum.org>
+
+ * ext/gnomevfs/gstgnomevfssrc.c (unicodify,
+ gst_gnomevfssrc_unicodify): New functions.
+ (audiocast_thread_run): Use them. Remove redundant if from
+ "if (foo) g_free (foo);" bits. Change fprintf to g_print.
+ (gst_gnomevfssrc_received_headers_callback): Ditto.
+ (gst_gnomevfssrc_get_icy_metadata): Ditto.
+
+2003-02-06 Colin Walters <walters@gnu.org>
+
+ * ext/gnomevfs/gstgnomevfssrc.c: Port all the fixes from
+ BRANCH-GSTREAMER-0_6.
+
+2003-01-25 Colin Walters <walters@gnu.org>
+
+ * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_open_file): Don't
+ make a size request when in iradio mode.
+
+2002-11-25 Colin Walters <walters@debian.org>
+
+ * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_received_headers_callback):
+ Test for url in correct variable.
+
+2002-11-17 Ken MacLeod <ken@bitsko.slc.ut.us>
+
+ * gst/modplug/modplug_types.cc: Renamed from
+ gst/modplug/modplug_types.c. Change GST_BUFFER_DATA(buf) result
+ type from 'gchar' to 'gunit8'.
+
+2002-07-07 Richard Boulton <richard@tartarus.org>
+
+ * LICENSE_readme: Mention that synaesthesia is derived from GPL
+ code.
+
+2002-06-03 Richard Boulton <richard@tartarus.org>
+
+ * m4/mpeg2dec.m4: Test for cpuaccel library as well as mpeg2dec
+ library. Add appropriate includes before test compile of mpeg2.h
+ so that compilation succeeds.
+
+2002-05-06 Thomas Vander Stichele <thomas@apestaart.org>
+
+ * GConf stuff : from http://www.gnome.org/projects/gconf/ and eog
+ - added gstreamer-gconf package
+
+2002-02-06 Thomas Vander Stichele <thomas@apestaart.org>
+
+ * more build cleanup : merging over changes from gst-player
+
+2002-01-17 Bastien Nocera <hadess@hadess.net>
+
+ * sys/Makefile.am: make the qcam plugin build only
+ only platforms using NASM, ie. x86
+
+2002-01-06 Rodney Dawes <dobey@free.fr>
+
+ * configure.ac: added -lm to cdparanoia check so it works,
+ fixed a couple typos for the libraw1394 checks
+
+2001-12-20 Thomas Vander Stichele <thomas@apestaart.org>
+
+ * opened gst-plugins module
+ * starting with sys plugins
diff --git a/common b/common
-Subproject 9f37b3e515260c7b294222a502b2cc75dd0983b
+Subproject cd5507ae3df8dc48c07df9e37878846b6b79faa
diff --git a/configure.ac b/configure.ac
index d2f9f166..7cd87267 100644
--- a/configure.ac
+++ b/configure.ac
@@ -241,7 +241,6 @@ HAVE_GTK=NO
PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
if test "x$HAVE_GTK_22" = "xyes"; then
HAVE_GTK=yes
- AC_PATH_PROG(QUERYLOADERS, gdk-pixbuf-query-loaders, no)
GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
AC_SUBST(GTK_VERSION)
GTK_PREFIX=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
@@ -259,50 +258,67 @@ GTK_LIBS=$GTK2_LIBS
AC_SUBST(GTK_LIBS)
AC_SUBST(GTK_CFLAGS)
AC_SUBST(HAVE_GTK)
-AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GTK_22" = "xyes")
+
+# gdk_pixbuf gstreamer loader is considered experimental, so disable
+# by default
+if test "x$HAVE_GTK_22" = "xyes"; then
+ HAVE_GDK_LOADERS=yes
+else
+ HAVE_GDK_LOADERS=no
+fi
+
+AC_ARG_ENABLE(gdk-pixbuf-loader,
+ AC_HELP_STRING([--enable-gdk-pixbuf-loader],
+ [whether to enable building of gdk_pixbuf loader]),
+ :, HAVE_GDK_LOADERS="no")
# allow customization of pixbuf loader install location
# when nothing specified, adhere to prefix settings
# when called without any option with this argument, autodetect
# when called with a path, set to the given path
-AC_ARG_WITH(gdk-pixbuf-loader-dir,
- AC_HELP_STRING([--with-gdk-pixbuf-loader-dir],
- [directory to install the gdk_pixbuf loader (none for pkg-config default)]),
- [
- if test "x${withval}" != xyes ; then
- GDK_PIXBUF_LOADER_DIR="${withval}"
- else
- GDK_PIXBUF_LOADER_DIR="$GDK_PIXBUF_LIBDIR/gtk-2.0/\$GTK_VERSION/loaders"
- fi
- ],
- # nothing specified
- GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\$GTK_VERSION/loaders
-)
-AS_AC_EXPAND(GDK_PIXBUF_LOADER_DIR, $GDK_PIXBUF_LOADER_DIR)
-AC_SUBST(GDK_PIXBUF_LOADER_DIR)
-AC_MSG_NOTICE([Putting GTK+-2 pixbuf loaders in $GDK_PIXBUF_LOADER_DIR])
-# allow customization of pixbuf loader configuration file
-# when nothing specified, adhere to prefix settings
-# when called without any option with this argument, autodetect
-# when called with a path, set to the given path
-AC_ARG_WITH(gdk-pixbuf-conf-dir,
- AC_HELP_STRING([--with-gdk-pixbuf-conf-dir],
- [directory to install the gdk_pixbuf config (none for pkg-config default)]),
- [
- if test "x${withval}" != xyes ; then
- GDK_PIXBUF_CONF_DIR="${withval}"
- else
- GDK_PIXBUF_CONF_DIR="$GDK_PIXBUF_PREFIXDIR/etc/gtk-2.0/"
- fi
- ],
- # nothing specified
- GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\$GTK_VERSION/loaders
- GDK_PIXBUF_CONF_DIR=${sysconfdir}/gtk-2.0
-)
-AS_AC_EXPAND(GDK_PIXBUF_CONF_DIR, $GDK_PIXBUF_CONF_DIR)
-AC_SUBST(GDK_PIXBUF_CONF_DIR)
-AC_MSG_NOTICE([Putting GTK+-2 pixbuf loader config in $GDK_PIXBUF_CONF_DIR])
+if test "x$HAVE_GDK_LOADERS" == "xyes"; then
+ AC_PATH_PROG(QUERYLOADERS, gdk-pixbuf-query-loaders, no)
+ AC_ARG_WITH(gdk-pixbuf-loader-dir,
+ AC_HELP_STRING([--with-gdk-pixbuf-loader-dir],
+ [directory to install the gdk_pixbuf loader (none for pkg-config default)]),
+ [
+ if test "x${withval}" != xyes ; then
+ GDK_PIXBUF_LOADER_DIR="${withval}"
+ else
+ GDK_PIXBUF_LOADER_DIR="$GDK_PIXBUF_LIBDIR/gtk-2.0/\$GTK_VERSION/loaders"
+ fi
+ ],
+ # nothing specified
+ GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\$GTK_VERSION/loaders
+ )
+ AS_AC_EXPAND(GDK_PIXBUF_LOADER_DIR, $GDK_PIXBUF_LOADER_DIR)
+ AC_SUBST(GDK_PIXBUF_LOADER_DIR)
+ AC_MSG_NOTICE([Putting GTK+-2 pixbuf loaders in $GDK_PIXBUF_LOADER_DIR])
+
+ # allow customization of pixbuf loader configuration file
+ # when nothing specified, adhere to prefix settings
+ # when called without any option with this argument, autodetect
+ # when called with a path, set to the given path
+ AC_ARG_WITH(gdk-pixbuf-conf-dir,
+ AC_HELP_STRING([--with-gdk-pixbuf-conf-dir],
+ [directory to install the gdk_pixbuf config (none for pkg-config default)]),
+ [
+ if test "x${withval}" != xyes ; then
+ GDK_PIXBUF_CONF_DIR="${withval}"
+ else
+ GDK_PIXBUF_CONF_DIR="$GDK_PIXBUF_PREFIXDIR/etc/gtk-2.0/"
+ fi
+ ],
+ # nothing specified
+ GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\$GTK_VERSION/loaders
+ GDK_PIXBUF_CONF_DIR=${sysconfdir}/gtk-2.0
+ )
+ AS_AC_EXPAND(GDK_PIXBUF_CONF_DIR, $GDK_PIXBUF_CONF_DIR)
+ AC_SUBST(GDK_PIXBUF_CONF_DIR)
+ AC_MSG_NOTICE([Putting GTK+-2 pixbuf loader config in $GDK_PIXBUF_CONF_DIR])
+fi
+AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GDK_LOADERS" = "xyes")
dnl ===========================================================================
dnl ============================= gst plug-ins ================================