diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2017-08-17 23:32:53 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2017-08-18 00:41:28 +0200 |
commit | a8228ddb00755c2d8d64ee7149795654952b45d6 (patch) | |
tree | bf4d231b7d8dc09a636a70b3ae6fe16c822298af /gnome-base/gnome-settings-daemon | |
parent | app-text/libgxps: fix sandbox issue, bug #628114 (diff) | |
download | gentoo-a8228ddb00755c2d8d64ee7149795654952b45d6.tar.gz gentoo-a8228ddb00755c2d8d64ee7149795654952b45d6.tar.bz2 gentoo-a8228ddb00755c2d8d64ee7149795654952b45d6.zip |
gnome-base/gnome-settings-daemon: fix build with INPUT_DEVICES=wacom, bug #628106
Package-Manager: Portage-2.3.7, Repoman-2.3.3
Diffstat (limited to 'gnome-base/gnome-settings-daemon')
-rw-r--r-- | gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch | 41 |
1 files changed, 34 insertions, 7 deletions
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 <mail@ole-reifschneider.de> 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 <eva@gentoo.org> +Signed-off-by: Timo Tambet <ttambet@gmail.com> +Signed-off-by: Yuh-Horng Chen <yhchens@gmail.com> --- - 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 |