Title: [115737] trunk
Revision
115737
Author
[email protected]
Date
2012-05-01 11:04:48 -0700 (Tue, 01 May 2012)

Log Message

[GTK] Fix gstreamer detection during configure
https://bugs.webkit.org/show_bug.cgi?id=84325

Patch by Landry Breuil <[email protected]> on 2012-05-01
Reviewed by Philippe Normand.

* configure.ac: Fix GSTREAMER_REQUIRED_VERSION and
GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION assignments.

Modified Paths

Diff

Modified: trunk/ChangeLog (115736 => 115737)


--- trunk/ChangeLog	2012-05-01 17:40:03 UTC (rev 115736)
+++ trunk/ChangeLog	2012-05-01 18:04:48 UTC (rev 115737)
@@ -1,3 +1,13 @@
+2012-05-01  Landry Breuil  <[email protected]>
+
+        [GTK] Fix gstreamer detection during configure
+        https://bugs.webkit.org/show_bug.cgi?id=84325
+
+        Reviewed by Philippe Normand.
+
+        * configure.ac: Fix GSTREAMER_REQUIRED_VERSION and
+        GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION assignments.
+
 2012-05-01  Mike Fenton  <[email protected]>
 
         Add special attribute for alternate selection touch handling.

Modified: trunk/configure.ac (115736 => 115737)


--- trunk/configure.ac	2012-05-01 17:40:03 UTC (rev 115736)
+++ trunk/configure.ac	2012-05-01 18:04:48 UTC (rev 115737)
@@ -342,12 +342,12 @@
 GSTREAMER_1_0_PLUGINS_BASE_REQUIRED_VERSION=0.11.90
 
 case "$with_gstreamer" in
-     0.10) GSTREAMER_REQUIRED_VERSION=GSTREAMER_0_10_REQUIRED_VERSION
-           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION
+     0.10) GSTREAMER_REQUIRED_VERSION=$GSTREAMER_0_10_REQUIRED_VERSION
+           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=$GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION
            GST_API_VERSION=0.10
            ;;
-     1.0) GSTREAMER_REQUIRED_VERSION=GSTREAMER_1_0_REQUIRED_VERSION
-           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=GSTREAMER_1_0_PLUGINS_BASE_REQUIRED_VERSION
+     1.0) GSTREAMER_REQUIRED_VERSION=$GSTREAMER_1_0_REQUIRED_VERSION
+           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=$GSTREAMER_1_0_PLUGINS_BASE_REQUIRED_VERSION
            GST_API_VERSION=1.0
            ;;
 esac
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to