forked from AuroraMiddleware/gtk
meson: Remove G_LOG_USE_STRUCTURED from target C flags
The G_LOG_USE_STRUCTURED symbol is defined in the project flags, so we don't need to add it again in the per-target flags.
This commit is contained in:
parent
fee3f9afa1
commit
0dad501d16
@ -38,7 +38,6 @@ libgdk_broadway = static_library('gdk-broadway',
|
||||
c_args: [
|
||||
'-DGDK_COMPILATION',
|
||||
'-DG_LOG_DOMAIN="Gdk"',
|
||||
'-DG_LOG_USE_STRUCTURED=1',
|
||||
] + common_cflags,
|
||||
link_args: common_ldflags,
|
||||
dependencies: [gdk_deps, gdk_broadway_deps])
|
||||
@ -63,6 +62,6 @@ executable('gtk4-broadwayd',
|
||||
clienthtml_h, broadwayjs_h,
|
||||
'broadwayd.c', 'broadway-server.c', 'broadway-buffer.c', 'broadway-output.c',
|
||||
include_directories: [confinc, gdkinc],
|
||||
c_args: ['-DGDK_COMPILATION', '-DG_LOG_DOMAIN="Gdk"', '-DG_LOG_USE_STRUCTURED=1', ],
|
||||
c_args: ['-DGDK_COMPILATION', '-DG_LOG_DOMAIN="Gdk"', ],
|
||||
dependencies : [broadwayd_syslib, gdk_deps],
|
||||
install : true)
|
||||
|
@ -205,7 +205,6 @@ libgdk = static_library('gdk',
|
||||
c_args: [
|
||||
'-DGDK_COMPILATION',
|
||||
'-DG_LOG_DOMAIN="Gdk"',
|
||||
'-DG_LOG_USE_STRUCTURED=1',
|
||||
] + common_cflags,
|
||||
link_whole: gdk_backends,
|
||||
link_args: common_ldflags)
|
||||
|
@ -98,7 +98,6 @@ libgdk_wayland = static_library('gdk-wayland',
|
||||
c_args: [
|
||||
'-DGDK_COMPILATION',
|
||||
'-DG_LOG_DOMAIN="Gdk"',
|
||||
'-DG_LOG_USE_STRUCTURED=1',
|
||||
] + common_cflags,
|
||||
link_args: common_ldflags,
|
||||
dependencies: [ gdk_deps, gdk_wayland_deps, ])
|
||||
|
@ -73,7 +73,6 @@ libgdk_x11 = static_library('gdk-x11',
|
||||
c_args: [
|
||||
'-DGDK_COMPILATION',
|
||||
'-DG_LOG_DOMAIN="Gdk"',
|
||||
'-DG_LOG_USE_STRUCTURED=1',
|
||||
] + common_cflags,
|
||||
link_args: common_ldflags,
|
||||
dependencies: [ gdk_deps, gdk_x11_deps, ])
|
||||
|
@ -771,7 +771,6 @@ gtkversion = configure_file(input: 'gtkversion.h.in',
|
||||
gtk_cargs = [
|
||||
'-DGTK_COMPILATION',
|
||||
'-DG_LOG_DOMAIN="Gtk"',
|
||||
'-DG_LOG_USE_STRUCTURED=1',
|
||||
'-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED',
|
||||
'-DGTK_BINARY_VERSION="@0@"'.format(gtk_binary_version),
|
||||
'-DGTK_HOST="@0@"'.format(host_machine.system()),
|
||||
|
Loading…
Reference in New Issue
Block a user