# HG changeset patch # User renatofilho # Date 1169232882 0 # Node ID f43c12fe4d226ef85e687f95446e177191ca1de2 # Parent dde6d4e8b881a9d12af69b08464c4ee16f3a12c6 [svn r284] removed gst dep diff -r dde6d4e8b881 -r f43c12fe4d22 gmyth/configure.ac --- a/gmyth/configure.ac Fri Jan 19 18:52:47 2007 +0000 +++ b/gmyth/configure.ac Fri Jan 19 18:54:42 2007 +0000 @@ -145,66 +145,6 @@ AC_SUBST(LIBCURL_LIBS) -# check for gstreamer development files -GST_REQUIRED=0.10 -GST_MAJORMINOR=0.10 -PKG_CHECK_MODULES(GST, \ - gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED, - HAVE_GST=yes, HAVE_GST=no) - -# Give error and exit if we don't have gstreamer -if test "x$HAVE_GST" = "xno"; then - AC_MSG_ERROR(you need gstreamer development packages installed !) -fi - -# make GST_CFLAGS and GST_LIBS available -AC_SUBST(GST_CFLAGS) -AC_SUBST(GST_LIBS) - -# check for gstreamer-base -GSTBASE_REQUIRED=0.10 -GSTBASE_MAJORMINOR=0.10 -PKG_CHECK_MODULES(GSTBASE, \ - gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED, - HAVE_GSTBASE=yes, HAVE_GSTBASE=no) - -# Give error and exit if we don't have gstreamer base libraries -if test "x$HAVE_GSTBASE" = "xno"; then - AC_MSG_ERROR(you need gstreamer base development packages installed !) -fi - -# make GSTBASE_CFLAGS and GSTBASE_LIBS available -AC_SUBST(GSTBASE_CFLAGS) -AC_SUBST(GSTBASE_LIBS) - -# check for gstreamer-base plugins (xoverlay interface) -GSTPLUGINSBASE_REQUIRED=0.10 -GSTPLUGINSBASE_MAJORMINOR=0.10 -PKG_CHECK_MODULES(GSTPLUGINSBASE, \ - gstreamer-plugins-base-$GSTPLUGINSBASE_MAJORMINOR >= $GSTPLUGINSBASE_REQUIRED, - HAVE_GSTPLUGINSBASE=yes, HAVE_GSTPLUGINSBASE=no) - -# Give error and exit if we don't have gstreamer base libraries -if test "x$HAVE_GSTPLUGINSBASE" = "xno"; then - AC_MSG_ERROR(you need gstreamer plugins base development packages installed !) -fi - -# make GSTPLUGINSBASE_CFLAGS and GSTPLUGINSBASE_LIBS available -AC_SUBST(GSTPLUGINSBASE_CFLAGS) -AC_SUBST(GSTPLUGINSBASE_LIBS) - -# make GST_MAJORMINOR available in Makefile.am -AC_SUBST(GST_MAJORMINOR) -GSTBASE_MAJORMINOR=0.10 -PKG_CHECK_MODULES(GSTBASE, \ - gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED, - HAVE_GSTBASE=yes, HAVE_GSTBASE=no) - -# Give error and exit if we don't have gstreamer base libraries -if test "x$HAVE_GSTBASE" = "xno"; then - AC_MSG_ERROR(you need gstreamer base development packages installed !) -fi - # # mysql libraries # diff -r dde6d4e8b881 -r f43c12fe4d22 gmyth/src/Makefile.am --- a/gmyth/src/Makefile.am Fri Jan 19 18:52:47 2007 +0000 +++ b/gmyth/src/Makefile.am Fri Jan 19 18:54:42 2007 +0000 @@ -40,26 +40,28 @@ glib-genmarshal --body --prefix=gmyth_marshal $(srcdir)/gmyth_marshal.list >> gmyth_marshal.c.tmp mv gmyth_marshal.c.tmp gmyth_marshal.c -libgmyth_la_CFLAGS = \ - -DDATADIR=\"$(pkgdatadir)\" \ +libgmyth_la_CFLAGS = \ + -DDATADIR=\"$(pkgdatadir)\" \ $(GLIB_CFLAGS) \ $(GOBJECT_CFLAGS) \ $(GST_CFLAGS) \ $(GSTBASE_CFLAGS) \ - $(GSTPLUGINSBASE_CFLAGS) \ - $(MYSQL_CFLAGS) + $(GSTPLUGINSBASE_CFLAGS) \ + $(MYSQL_CFLAGS) \ + $(LIBXML_CFLAGS) -libgmyth_la_LDFLAGS = \ +libgmyth_la_LDFLAGS = \ -export-dynamic \ $(MYSQL_LIBS) \ $(GST_LIBS) \ $(GSTBASE_LIBS) \ - $(GSTPLUGINS_LIBS) + $(GSTPLUGINS_LIBS) \ + $(LIBXML_LIBS) -libgmyth_includedir = \ +libgmyth_includedir = \ $(pkgincludedir) -libgmyth_include_HEADERS = \ +libgmyth_include_HEADERS = \ gmyth.h \ gmyth_common.h \ gmyth_debug.h \