diff options
Diffstat (limited to 'WebCore/wscript')
-rw-r--r-- | WebCore/wscript | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/wscript b/WebCore/wscript index f183071..3719b84 100644 --- a/WebCore/wscript +++ b/WebCore/wscript @@ -31,7 +31,6 @@ webcore_sources = {} if build_port == "wx": webcore_sources['plugins'] = [ 'plugins/PluginDataNone.cpp', - 'plugins/PluginPackageNone.cpp', 'plugins/PluginViewNone.cpp' ] @@ -43,15 +42,17 @@ if build_port == "wx": # widely available (it was fixed in 2.8.10). 'platform/win/SharedTimerWin.cpp', 'page/win/PageWin.cpp', - + 'plugins/win/PluginPackageWin.cpp', ] elif sys.platform.startswith('darwin'): webcore_dirs.append('platform/wx/wxcode/mac/carbon') webcore_sources['wx-mac'] = [ 'platform/mac/PurgeableBufferMac.cpp', ] + webcore_sources['plugins'].append('plugins/PluginPackageNone.cpp') else: webcore_dirs.append('platform/wx/wxcode/gtk') + webcore_sources['plugins'].append('plugins/PluginPackageNone.cpp') from TaskGen import taskgen, feature, after import Task, ccroot @@ -116,7 +117,7 @@ def build(bld): source = ' '.join(flattenSources(webcore_sources.values())), cxxflags = cxxflags, target = 'webcore', - uselib = 'WX ICU XML XSLT CURL ' + get_config(), + uselib = 'WX ICU XML XSLT CURL SQLITE3 ' + get_config(), uselib_local = '', install_path = output_dir, ) |