[svn r284] removed gst dep trunk
authorrenatofilho
Fri Jan 19 18:54:42 2007 +0000 (2007-01-19)
branchtrunk
changeset 283f43c12fe4d22
parent 282 dde6d4e8b881
child 284 9f0e61bf49ff
[svn r284] removed gst dep
gmyth/configure.ac
gmyth/src/Makefile.am
     1.1 --- a/gmyth/configure.ac	Fri Jan 19 18:52:47 2007 +0000
     1.2 +++ b/gmyth/configure.ac	Fri Jan 19 18:54:42 2007 +0000
     1.3 @@ -145,66 +145,6 @@
     1.4  AC_SUBST(LIBCURL_LIBS)
     1.5  
     1.6  
     1.7 -# check for gstreamer development files
     1.8 -GST_REQUIRED=0.10
     1.9 -GST_MAJORMINOR=0.10
    1.10 -PKG_CHECK_MODULES(GST, \
    1.11 -  gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED,
    1.12 -  HAVE_GST=yes, HAVE_GST=no)
    1.13 -
    1.14 -# Give error and exit if we don't have gstreamer
    1.15 -if test "x$HAVE_GST" = "xno"; then
    1.16 -  AC_MSG_ERROR(you need gstreamer development packages installed !)
    1.17 -fi
    1.18 -
    1.19 -# make GST_CFLAGS and GST_LIBS available
    1.20 -AC_SUBST(GST_CFLAGS)
    1.21 -AC_SUBST(GST_LIBS)
    1.22 -
    1.23 -# check for gstreamer-base
    1.24 -GSTBASE_REQUIRED=0.10
    1.25 -GSTBASE_MAJORMINOR=0.10
    1.26 -PKG_CHECK_MODULES(GSTBASE, \
    1.27 -  gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED,
    1.28 -  HAVE_GSTBASE=yes, HAVE_GSTBASE=no)
    1.29 -
    1.30 -# Give error and exit if we don't have gstreamer base libraries
    1.31 -if test "x$HAVE_GSTBASE" = "xno"; then
    1.32 -  AC_MSG_ERROR(you need gstreamer base development packages installed !)
    1.33 -fi
    1.34 -
    1.35 -# make GSTBASE_CFLAGS and GSTBASE_LIBS available
    1.36 -AC_SUBST(GSTBASE_CFLAGS)
    1.37 -AC_SUBST(GSTBASE_LIBS)
    1.38 -
    1.39 -# check for gstreamer-base plugins (xoverlay interface)
    1.40 -GSTPLUGINSBASE_REQUIRED=0.10
    1.41 -GSTPLUGINSBASE_MAJORMINOR=0.10
    1.42 -PKG_CHECK_MODULES(GSTPLUGINSBASE, \
    1.43 -  gstreamer-plugins-base-$GSTPLUGINSBASE_MAJORMINOR >= $GSTPLUGINSBASE_REQUIRED,
    1.44 -  HAVE_GSTPLUGINSBASE=yes, HAVE_GSTPLUGINSBASE=no)
    1.45 -
    1.46 -# Give error and exit if we don't have gstreamer base libraries
    1.47 -if test "x$HAVE_GSTPLUGINSBASE" = "xno"; then
    1.48 -  AC_MSG_ERROR(you need gstreamer plugins base development packages installed !)
    1.49 -fi
    1.50 -
    1.51 -# make GSTPLUGINSBASE_CFLAGS and GSTPLUGINSBASE_LIBS available
    1.52 -AC_SUBST(GSTPLUGINSBASE_CFLAGS)
    1.53 -AC_SUBST(GSTPLUGINSBASE_LIBS)
    1.54 -
    1.55 -# make GST_MAJORMINOR available in Makefile.am
    1.56 -AC_SUBST(GST_MAJORMINOR)
    1.57 -GSTBASE_MAJORMINOR=0.10
    1.58 -PKG_CHECK_MODULES(GSTBASE, \
    1.59 -  gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED,
    1.60 -  HAVE_GSTBASE=yes, HAVE_GSTBASE=no)
    1.61 -
    1.62 -# Give error and exit if we don't have gstreamer base libraries
    1.63 -if test "x$HAVE_GSTBASE" = "xno"; then
    1.64 -  AC_MSG_ERROR(you need gstreamer base development packages installed !)
    1.65 -fi
    1.66 -
    1.67  #
    1.68  # mysql libraries
    1.69  #
     2.1 --- a/gmyth/src/Makefile.am	Fri Jan 19 18:52:47 2007 +0000
     2.2 +++ b/gmyth/src/Makefile.am	Fri Jan 19 18:54:42 2007 +0000
     2.3 @@ -40,26 +40,28 @@
     2.4  	glib-genmarshal --body --prefix=gmyth_marshal $(srcdir)/gmyth_marshal.list >> gmyth_marshal.c.tmp
     2.5  	mv gmyth_marshal.c.tmp gmyth_marshal.c
     2.6  
     2.7 -libgmyth_la_CFLAGS = 			\
     2.8 -	-DDATADIR=\"$(pkgdatadir)\" \
     2.9 +libgmyth_la_CFLAGS = 				\
    2.10 +	-DDATADIR=\"$(pkgdatadir)\" 		\
    2.11  	$(GLIB_CFLAGS) 				\
    2.12  	$(GOBJECT_CFLAGS)			\
    2.13  	$(GST_CFLAGS) 				\
    2.14  	$(GSTBASE_CFLAGS)			\
    2.15 -	$(GSTPLUGINSBASE_CFLAGS)	\
    2.16 -	$(MYSQL_CFLAGS)
    2.17 +	$(GSTPLUGINSBASE_CFLAGS)		\
    2.18 +	$(MYSQL_CFLAGS)				\
    2.19 +	$(LIBXML_CFLAGS)
    2.20  
    2.21 -libgmyth_la_LDFLAGS = 			\
    2.22 +libgmyth_la_LDFLAGS = 				\
    2.23  	-export-dynamic 			\
    2.24  	$(MYSQL_LIBS) 				\
    2.25  	$(GST_LIBS) 				\
    2.26  	$(GSTBASE_LIBS)				\
    2.27 -	$(GSTPLUGINS_LIBS)
    2.28 +	$(GSTPLUGINS_LIBS)			\
    2.29 +	$(LIBXML_LIBS)
    2.30  
    2.31 -libgmyth_includedir = 			\
    2.32 +libgmyth_includedir = 				\
    2.33  	$(pkgincludedir)
    2.34  
    2.35 -libgmyth_include_HEADERS =    	\
    2.36 +libgmyth_include_HEADERS =    			\
    2.37  	gmyth.h					\
    2.38  	gmyth_common.h	 			\
    2.39  	gmyth_debug.h				\