Title: [142777] trunk
Revision
142777
Author
[email protected]
Date
2013-02-13 12:52:05 -0800 (Wed, 13 Feb 2013)

Log Message

Try to fix the build after r142756

* Source/autotools/SetupAutomake.m4: Instead of using the (now gone) have_gstreamer
variable, activate GStreamer if either web audio or web video is enabled.

Modified Paths

Diff

Modified: trunk/ChangeLog (142776 => 142777)


--- trunk/ChangeLog	2013-02-13 20:51:10 UTC (rev 142776)
+++ trunk/ChangeLog	2013-02-13 20:52:05 UTC (rev 142777)
@@ -1,3 +1,10 @@
+2013-02-13  Martin Robinson  <[email protected]>
+
+        Try to fix the build after r142756
+
+        * Source/autotools/SetupAutomake.m4: Instead of using the (now gone) have_gstreamer
+        variable, activate GStreamer if either web audio or web video is enabled.
+
 2013-02-13  Xianzhu Wang  <[email protected]>
 
         Heap-use-after-free in WebCore::ScrollingCoordinator::hasVisibleSlowRepaintViewportConstrainedObjects.

Modified: trunk/Source/autotools/SetupAutomake.m4 (142776 => 142777)


--- trunk/Source/autotools/SetupAutomake.m4	2013-02-13 20:51:10 UTC (rev 142776)
+++ trunk/Source/autotools/SetupAutomake.m4	2013-02-13 20:52:05 UTC (rev 142777)
@@ -28,7 +28,7 @@
 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
 
 # GStreamer feature conditionals.
-AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"])
+AM_CONDITIONAL([USE_GSTREAMER], [test "$enable_video" = "yes" || test "$enable_web_audio" = "yes"])
 AM_CONDITIONAL([USE_WEBAUDIO_GSTREAMER], [test "$enable_web_audio" = "yes"])
 
 # ATSPI2 conditional.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to