Skip to content

Commit

Permalink
REGRESSION(r177885): [GTK][WK1] Cannot compile 2.4.8 when WK2 is disa…
Browse files Browse the repository at this point in the history
…bled

https://bugs.webkit.org/show_bug.cgi?id=140241

Patch by Tomas Popela <tpopela@redhat.com> on 2015-04-07
Reviewed by Carlos Garcia Campos.

We have to compile the PluginPackageNone.cpp and PluginViewNone.cpp
just when WebKit2 is enabled and we are not building for X11.

* GNUmakefile.list.am:
  • Loading branch information
tpopela authored and carlosgcampos committed Apr 7, 2015
1 parent e9be02e commit c26a847
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,15 @@
2015-04-07 Tomas Popela <tpopela@redhat.com>

REGRESSION(r177885): [GTK][WK1] Cannot compile 2.4.8 when WK2 is disabled
https://bugs.webkit.org/show_bug.cgi?id=140241

Reviewed by Carlos Garcia Campos.

We have to compile the PluginPackageNone.cpp and PluginViewNone.cpp
just when WebKit2 is enabled and we are not building for X11.

* GNUmakefile.list.am:

2015-04-07 Carlos Garcia Campos <cgarcia@igalia.com>

Unreviewed. Fix the build with newer GLib.
Expand Down
8 changes: 8 additions & 0 deletions Source/WebCore/GNUmakefile.list.am
Expand Up @@ -6254,9 +6254,13 @@ endif # END USE_GLX
endif # END TARGET_X11

if TARGET_WAYLAND
if !TARGET_X11
if ENABLE_WEBKIT2
webcore_sources += \
Source/WebCore/plugins/PluginPackageNone.cpp \
Source/WebCore/plugins/PluginViewNone.cpp
endif # END ENABLE_WEBKIT2
endif # END !TARGET_X11
endif # END TARGET_WAYLAND

if TARGET_X11_OR_WAYLAND
Expand Down Expand Up @@ -6305,9 +6309,13 @@ webcoregtk_sources += \
endif # END TARGET_WIN32

if TARGET_QUARTZ
if !TARGET_X11
if ENABLE_WEBKIT2
webcore_sources += \
Source/WebCore/plugins/PluginPackageNone.cpp \
Source/WebCore/plugins/PluginViewNone.cpp
endif # END ENABLE_WEBKIT2
endif # END !TARGET_X11
platformgtk_sources += \
Source/WebCore/platform/cairo/WidgetBackingStoreCairo.h \
Source/WebCore/platform/cairo/WidgetBackingStoreCairo.cpp
Expand Down

0 comments on commit c26a847

Please sign in to comment.