Changeset 224151 in webkit


Ignore:
Timestamp:
Oct 28, 2017 10:18:46 AM (6 years ago)
Author:
Michael Catanzaro
Message:

[WPE] Build gst-plugins-base without pango support
https://bugs.webkit.org/show_bug.cgi?id=178918

Reviewed by Carlos Garcia Campos.

We need to build gst-plugins-base without pango support for WPE. Let's use JHBuild
conditions so we can make platform-specific changes in the shared GStreamer moduleset.

  • gstreamer/jhbuild.modules:
  • gtk/jhbuildrc:
  • wpe/jhbuildrc:
Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r224143 r224151  
     12017-10-28  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE] Build gst-plugins-base without pango support
     4        https://bugs.webkit.org/show_bug.cgi?id=178918
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        We need to build gst-plugins-base without pango support for WPE. Let's use JHBuild
     9        conditions so we can make platform-specific changes in the shared GStreamer moduleset.
     10
     11        * gstreamer/jhbuild.modules:
     12        * gtk/jhbuildrc:
     13        * wpe/jhbuildrc:
     14
    1152017-10-27  Stephan Szabo  <stephan.szabo@sony.com>
    216
  • trunk/Tools/gstreamer/jhbuild.modules

    r223178 r224151  
    5858             autogen-sh="configure"
    5959             autogenargs="--disable-examples --disable-gtk-doc --disable-introspection">
     60    <if condition-set="wpe">
     61      <autogenargs value="--disable-pango"/>
     62    </if>
    6063    <dependencies>
    6164      <dep package="gstreamer"/>
  • trunk/Tools/gtk/jhbuildrc

    r221369 r224151  
    4343    # For building gstreamer plugins on the Mac.
    4444    os.environ['OBJCFLAGS'] = '-Wno-error -O2 -g1'
     45
     46conditions.add('gtk')
  • trunk/Tools/wpe/jhbuildrc

    r216497 r224151  
    2424# Enable builddir != srcdir builds.
    2525buildroot = os.path.join(os.path.dirname(checkoutroot), "Build")
     26
     27conditions.add('wpe')
Note: See TracChangeset for help on using the changeset viewer.