From 3a1affa175fdb870171ecc2fd608c84b518987e8 Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Wed, 19 May 2021 00:15:29 -0400 Subject: [PATCH] Don't link libpulsecommon with GLib and GTK This was the behaviour with the autotools build. Fixes #1210 Part-of: --- src/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index d8ecd86..69319c2 100644 --- a/src/meson.build +++ b/src/meson.build @@ -198,7 +198,8 @@ libpulsecommon = shared_library('pulsecommon-' + pa_version_major_minor, install_dir : privlibdir, dependencies : [ libm_dep, thread_dep, dl_dep, shm_dep, iconv_dep, sndfile_dep, dbus_dep, - x11_dep, libsystemd_dep, glib_dep, gtk_dep, asyncns_dep, libintl_dep, + x11_dep, libsystemd_dep, glib_dep.partial_dependency(compile_args: true), + gtk_dep.partial_dependency(compile_args: true), asyncns_dep, libintl_dep, platform_dep, tcpwrap_dep, platform_socket_dep, execinfo_dep, ], implicit_include_directories : false) -- 2.7.4