Changeset 94000 in webkit


Ignore:
Timestamp:
Aug 29, 2011, 12:19:02 PM (14 years ago)
Author:
Martin Robinson
Message:

Reviewed by Xan Lopez.

[GTK] Build WebKit2 unconditionally
https://bugs.webkit.org/show_bug.cgi?id=62749

Build WebKit2 by default. This will make the bots build it and catch
build errors when they occur.

  • GNUmakefile.am: Enable WebKit2 by default, but remove references to the WebKit2

PC file, which should not be shipped until WebKit2 is actually shipped officially.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r93999 r94000  
     12011-08-26  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Build WebKit2 unconditionally
     6        https://bugs.webkit.org/show_bug.cgi?id=62749
     7
     8        Build WebKit2 by default. This will make the bots build it and catch
     9        build errors when they occur.
     10
     11        * GNUmakefile.am: Enable WebKit2 by default, but remove references to the WebKit2
     12        PC file, which should not be shipped until WebKit2 is actually shipped officially.
     13
    1142011-08-29  Alexey Proskuryakov  <ap@apple.com>
    215
  • trunk/Source/WebKit2/GNUmakefile.am

    r92273 r94000  
    909909        $(XT_LIBS)
    910910
    911 pkgconfig_DATA += Source/WebKit2/webkit2gtk-@WEBKITGTK_API_VERSION@.pc
    912 
    913911# WebKit2 specific variables
    914912forwarding_headers := $(GENSOURCES_WEBKIT2)/include
     
    957955        $(BUILT_SOURCES) \
    958956        $(top_builddir)/Programs/WebKitWebProcess
    959 
    960 DISTCLEANFILES += \
    961         $(top_builddir)/WebKit2/webkit2gtk-@WEBKITGTK_API_VERSION@.pc
    962957
    963958# WebKitWebProcess
  • trunk/configure.ac

    r93852 r94000  
    10961096AC_MSG_CHECKING([whether to build Webkit2])
    10971097AC_ARG_ENABLE(webkit2,
    1098             AC_HELP_STRING([--enable-webkit2],
    1099                 [build webkit2 [default=no]]),
    1100                 [], [enable_webkit2="no"])
     1098    AC_HELP_STRING([--enable-webkit2], [build webkit2 [default=yes]]),
     1099    [], [enable_webkit2="yes"])
    11011100AC_MSG_RESULT([$enable_webkit2])
    11021101if test "$enable_webkit2" = "yes"; then
     
    11091108AC_MSG_CHECKING([whether to build plugin process for WebKit2])
    11101109AC_ARG_ENABLE(plugin_process,
    1111             AC_HELP_STRING([--enable-plugin-process],
    1112                            [build plugin process for WebKit2 [default=yes]]),
     1110            AC_HELP_STRING([--enable-plugin-process], [build plugin process for WebKit2 [default=yes]]),
    11131111                           [], [enable_plugin_process="yes"])
    1114 # Build the plugin process only when building webkit2.
     1112AC_MSG_RESULT([$enable_plugin_process])
     1113
     1114# Build the plugin process only when building Webkit2.
    11151115if test "$enable_webkit2" = "no"; then
    11161116    enable_plugin_process=no
    11171117fi
    11181118
    1119 # Make sure we have gtk+ 2.x to build the plugin process
     1119# Make sure we have GTK+ 2.x to build the plugin process.
    11201120if test "$enable_plugin_process" = "yes"; then
    11211121   PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= $GTK2_REQUIRED_VERSION gail >= $GAIL2_REQUIRED_VERSION)
    11221122fi
    1123 
    11241123AC_SUBST(GTK2_CFLAGS)
    11251124AC_SUBST(GTK2_LIBS)
    1126 
    1127 AC_MSG_RESULT([$enable_plugin_process])
    11281125
    11291126GTK_DOC_CHECK([1.10])
     
    12431240)
    12441241
    1245 if test "$enable_webkit2" = "yes"; then
    1246     AC_CONFIG_FILES([
    1247     Source/WebKit2/webkit2gtk-${WEBKITGTK_API_VERSION}.pc:Source/WebKit2/webkit2gtk.pc.in
    1248     ]
    1249     ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
    1250     )
    1251 fi
    1252 
    12531242AC_OUTPUT
    12541243
     
    13211310 Touch Icon Loading support                               : $enable_touch_icon_loading
    13221311 Register Protocol Handler support                        : $enable_register_protocol_handler
     1312 WebKit2 support                                          : $enable_webkit2
     1313 WebKit2 plugin process                                   : $enable_plugin_process
    13231314
    13241315GTK+ configuration:
     
    13271318 Hildon UI extensions                                     : $with_hildon
    13281319 Introspection support                                    : $enable_introspection
    1329  WebKit2 support                                          : $enable_webkit2
    1330  WebKit2 plugin process                                   : $enable_plugin_process
    13311320"
    13321321if test "$with_unicode_backend" = "glib"; then
Note: See TracChangeset for help on using the changeset viewer.