Properly send XEmbed messages

The good news is that Wine now understands that it's an XEmbed message.
The bad news is that everything's now broken.
This commit is contained in:
Robbert van der Helm
2020-03-24 18:50:24 +01:00
parent 096e36dfdc
commit 161e102113
2 changed files with 13 additions and 9 deletions
+1 -2
View File
@@ -33,7 +33,6 @@ threads_dep = dependency('threads')
# The built in threads dependency does not know how to handle winegcc
wine_threads_dep = declare_dependency(link_args : '-lpthread')
xcb_dep = dependency('xcb')
xcb_ewmh_dep = dependency('xcb-ewmh')
include_dir = include_directories('src/include')
@@ -63,7 +62,7 @@ executable(
],
native : false,
include_directories : include_dir,
dependencies : [boost_dep, bitsery_dep, wine_threads_dep, xcb_dep, xcb_ewmh_dep],
dependencies : [boost_dep, bitsery_dep, wine_threads_dep, xcb_dep],
cpp_args : compiler_options,
link_args : []
)