From: Gilles Dartiguelongue Date: Thu, 17 Aug 2017 21:32:53 +0000 (+0200) Subject: gnome-base/gnome-settings-daemon: fix build with INPUT_DEVICES=wacom, bug #628106 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=a8228ddb00755c2d8d64ee7149795654952b45d6;p=gentoo.git gnome-base/gnome-settings-daemon: fix build with INPUT_DEVICES=wacom, bug #628106 Package-Manager: Portage-2.3.7, Repoman-2.3.3 --- diff --git a/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch b/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch index 5202f77d5dc4..608784c43bb4 100644 --- a/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch +++ b/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch @@ -1,14 +1,17 @@ -From 7b7bbbeeb9fa422d5a291574910e0881fa13f171 Mon Sep 17 00:00:00 2001 +From 9116667b39f7a3ef622b0fd4e09ffa77718fa5c2 Mon Sep 17 00:00:00 2001 From: Ole Reifschneider Date: Tue, 15 Aug 2017 18:51:42 +0200 -Subject: [PATCH] Make colord and wacom support optional +Subject: [PATCH 1/6] Make colord and wacom support optional Signed-off-by: Gilles Dartiguelongue +Signed-off-by: Timo Tambet +Signed-off-by: Yuh-Horng Chen --- - configure.ac | 54 +++++++++++++++++++++++++++++++---------------- - plugins/Makefile.am | 9 ++++++-- - plugins/dummy/Makefile.am | 5 ++++- - 3 files changed, 47 insertions(+), 21 deletions(-) + configure.ac | 54 ++++++++++++++++++++++++++++++---------------- + plugins/Makefile.am | 9 ++++++-- + plugins/common/Makefile.am | 7 ++++-- + plugins/dummy/Makefile.am | 5 ++++- + 4 files changed, 52 insertions(+), 23 deletions(-) diff --git a/configure.ac b/configure.ac index 73fe91e6..d8778c93 100644 @@ -121,6 +124,30 @@ index 9324b406..ee78d6d0 100644 enabled_plugins += wacom else disabled_plugins += wacom +diff --git a/plugins/common/Makefile.am b/plugins/common/Makefile.am +index 239c6015..65de4007 100644 +--- a/plugins/common/Makefile.am ++++ b/plugins/common/Makefile.am +@@ -49,14 +49,17 @@ libcommon_la_CPPFLAGS = \ + -I$(top_builddir)/gnome-settings-daemon \ + -I$(top_srcdir)/data/ + +-libcommon_la_CFLAGS = $(COMMON_CFLAGS) ++libcommon_la_CFLAGS = \ ++ $(COMMON_CFLAGS) \ ++ $(LIBWACOM_CFLAGS) + + libcommon_la_LDFLAGS = \ + $(GSD_PLUGIN_LDFLAGS) + + libcommon_la_LIBADD = \ + $(top_builddir)/gnome-settings-daemon/libgsd.la \ +- $(COMMON_LIBS) ++ $(COMMON_LIBS) \ ++ $(LIBWACOM_LIBS) + + libexec_PROGRAMS = gsd-test-input-helper + diff --git a/plugins/dummy/Makefile.am b/plugins/dummy/Makefile.am index cb5856cf..d8e8bc4e 100644 --- a/plugins/dummy/Makefile.am @@ -138,5 +165,5 @@ index cb5856cf..d8e8bc4e 100644 endif if !BUILD_PRINT_NOTIFICATIONS -- -2.14.0 +2.14.1