diff options
author | mbkma <[email protected]> | 2021-04-24 18:02:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-06-10 15:03:09 +0200 |
commit | 80640c9b70283c5ad13858d8b820302bb6d06132 (patch) | |
tree | 6abe9f3196076ff49ae8221c9c26f957861045a7 /src/Makefile.am | |
parent | 91a35358aed44381c9e5e249dcc081d77b4e29ee (diff) | |
download | mate-system-monitor-80640c9b70283c5ad13858d8b820302bb6d06132.tar.bz2 mate-system-monitor-80640c9b70283c5ad13858d8b820302bb6d06132.tar.xz |
add wayland support
therefore make libwnck optional (libwnck is x11 only)
see https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/3705931e307e87878f205b905eaa3f5daaffcf09
and https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/8c4d47d625661e848643ce564f63ed3ec1e83293
and https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/1ea64e9965bd6f1026f1167b692e7cc83c269be3
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6811bba..9f882fb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,7 +7,8 @@ AM_CPPFLAGS = \ -DPKGLIBEXECDIR=\""$(pkglibexecdir)"\" \ -DLIBEXECDIR=\""$(libexecdir)"\" \ @PROCMAN_CFLAGS@ \ - @SYSTEMD_CFLAGS@ + @SYSTEMD_CFLAGS@ \ + @WNCK_CFLAGS@ bin_PROGRAMS = mate-system-monitor @@ -60,7 +61,7 @@ mate_system_monitor_CXXFLAGS = \ mate_system_monitor_CFLAGS = \ $(WARN_CFLAGS) -mate_system_monitor_LDADD = @PROCMAN_LIBS@ @SYSTEMD_LIBS@ +mate_system_monitor_LDADD = @PROCMAN_LIBS@ @SYSTEMD_LIBS@ @WNCK_LIBS@ specdir = $(datadir)/procman |