[svn r313] Put autoconf macros to extend capabilities and meta-tags coming from GStreamer official repositories.
1.1 --- a/gst-plugins-mythtv/configure.ac Mon Jan 29 23:43:26 2007 +0000
1.2 +++ b/gst-plugins-mythtv/configure.ac Tue Jan 30 19:17:41 2007 +0000
1.3 @@ -176,6 +176,12 @@
1.4 # make GST_MAJORMINOR available in Makefile.am
1.5 AC_SUBST(GST_MAJORMINOR)
1.6
1.7 +AC_DEFINE(GST_LICENSE, "LGPL", [License for Distribution])
1.8 +
1.9 +AC_DEFINE(GST_PACKAGE_NAME, "GStreamer", [Gstremar package name])
1.10 +
1.11 +AC_DEFINE(GST_PACKAGE_ORIGIN, "http://gstreamer.net/", [Origin of this package] )
1.12 +
1.13 AC_CONFIG_FILES([
1.14 Makefile
1.15 src/Makefile
2.1 --- a/gst-plugins-mythtv/src/gstmythtvsrc.c Mon Jan 29 23:43:26 2007 +0000
2.2 +++ b/gst-plugins-mythtv/src/gstmythtvsrc.c Tue Jan 30 19:17:41 2007 +0000
2.3 @@ -1035,7 +1035,6 @@
2.4 case GST_STATE_CHANGE_NULL_TO_READY:
2.5 break;
2.6 case GST_STATE_CHANGE_READY_TO_PAUSED:
2.7 - break;
2.8 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
2.9 if (src->live_tv) {
2.10 if (!gmyth_recorder_send_frontend_ready_command (src->spawn_livetv->
2.11 @@ -1059,14 +1058,6 @@
2.12 break;
2.13 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2.14 case GST_STATE_CHANGE_PAUSED_TO_READY:
2.15 - if (src->live_tv) {
2.16 - if (!gmyth_recorder_send_frontend_ready_command (src->spawn_livetv->
2.17 - recorder))
2.18 - GST_WARNING_OBJECT (src,
2.19 - "Couldn't send the FRONTEND_READY message to the backend!");
2.20 - else
2.21 - GST_DEBUG_OBJECT (src, "FRONTEND_READY was sent to the backend");
2.22 - }
2.23 break;
2.24 default:
2.25 break;
2.26 @@ -1230,7 +1221,7 @@
2.27 GST_VERSION_MINOR,
2.28 "mythtv",
2.29 "lib MythTV src",
2.30 - plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/");
2.31 + plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
2.32
2.33
2.34 /*** GSTURIHANDLER INTERFACE *************************************************/