Changeset 94000 in webkit
- Timestamp:
- Aug 29, 2011, 12:19:02 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r93999 r94000 1 2011-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 1 14 2011-08-29 Alexey Proskuryakov <ap@apple.com> 2 15 -
trunk/Source/WebKit2/GNUmakefile.am
r92273 r94000 909 909 $(XT_LIBS) 910 910 911 pkgconfig_DATA += Source/WebKit2/webkit2gtk-@WEBKITGTK_API_VERSION@.pc912 913 911 # WebKit2 specific variables 914 912 forwarding_headers := $(GENSOURCES_WEBKIT2)/include … … 957 955 $(BUILT_SOURCES) \ 958 956 $(top_builddir)/Programs/WebKitWebProcess 959 960 DISTCLEANFILES += \961 $(top_builddir)/WebKit2/webkit2gtk-@WEBKITGTK_API_VERSION@.pc962 957 963 958 # WebKitWebProcess -
trunk/configure.ac
r93852 r94000 1096 1096 AC_MSG_CHECKING([whether to build Webkit2]) 1097 1097 AC_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"]) 1101 1100 AC_MSG_RESULT([$enable_webkit2]) 1102 1101 if test "$enable_webkit2" = "yes"; then … … 1109 1108 AC_MSG_CHECKING([whether to build plugin process for WebKit2]) 1110 1109 AC_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]]), 1113 1111 [], [enable_plugin_process="yes"]) 1114 # Build the plugin process only when building webkit2. 1112 AC_MSG_RESULT([$enable_plugin_process]) 1113 1114 # Build the plugin process only when building Webkit2. 1115 1115 if test "$enable_webkit2" = "no"; then 1116 1116 enable_plugin_process=no 1117 1117 fi 1118 1118 1119 # Make sure we have gtk+ 2.x to build the plugin process1119 # Make sure we have GTK+ 2.x to build the plugin process. 1120 1120 if test "$enable_plugin_process" = "yes"; then 1121 1121 PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= $GTK2_REQUIRED_VERSION gail >= $GAIL2_REQUIRED_VERSION) 1122 1122 fi 1123 1124 1123 AC_SUBST(GTK2_CFLAGS) 1125 1124 AC_SUBST(GTK2_LIBS) 1126 1127 AC_MSG_RESULT([$enable_plugin_process])1128 1125 1129 1126 GTK_DOC_CHECK([1.10]) … … 1243 1240 ) 1244 1241 1245 if test "$enable_webkit2" = "yes"; then1246 AC_CONFIG_FILES([1247 Source/WebKit2/webkit2gtk-${WEBKITGTK_API_VERSION}.pc:Source/WebKit2/webkit2gtk.pc.in1248 ]1249 ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]1250 )1251 fi1252 1253 1242 AC_OUTPUT 1254 1243 … … 1321 1310 Touch Icon Loading support : $enable_touch_icon_loading 1322 1311 Register Protocol Handler support : $enable_register_protocol_handler 1312 WebKit2 support : $enable_webkit2 1313 WebKit2 plugin process : $enable_plugin_process 1323 1314 1324 1315 GTK+ configuration: … … 1327 1318 Hildon UI extensions : $with_hildon 1328 1319 Introspection support : $enable_introspection 1329 WebKit2 support : $enable_webkit21330 WebKit2 plugin process : $enable_plugin_process1331 1320 " 1332 1321 if test "$with_unicode_backend" = "glib"; then
Note:
See TracChangeset
for help on using the changeset viewer.