1 From 1b2cf6e6c2640e08166af36eee775542a45325af Mon Sep 17 00:00:00 2001
2 From: "Yann E. MORIN" <yann.morin.1998@free.fr>
3 Date: Sun, 23 Oct 2016 22:36:40 +0200
4 Subject: [PATCH] build: get rid of sdkdir
6 Use of sdkdir causes problems during cross-compilation, where the full
7 path is then appended to the DESTDIR, leading to host paths being
8 appended in the target:
9 https://bugs.busybox.net/show_bug.cgi?id=8696
11 Other drivers (e.g. keyboard) got rid of sdkdir. Do the same.
13 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
16 configure.ac | 8 --------
17 include/Makefile.am | 4 +++-
18 xorg-libinput.pc.in | 5 +++--
19 4 files changed, 6 insertions(+), 13 deletions(-)
21 diff --git a/Makefile.am b/Makefile.am
22 index a447d61..7aa5523 100644
26 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 -DISTCHECK_CONFIGURE_FLAGS = --with-sdkdir='$${includedir}/xorg'
31 SUBDIRS = src include man test
32 MAINTAINERCLEANFILES = ChangeLog INSTALL
34 diff --git a/configure.ac b/configure.ac
35 index 9894817..fe198cb 100644
38 @@ -63,14 +63,6 @@ AC_ARG_WITH(xorg-conf-dir,
39 [xorgconfdir='${prefix}/share/X11/xorg.conf.d'])
42 -# X Server SDK location is required to install header files
43 -sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server`
45 -# Workaround overriding sdkdir to be able to create a tarball when user has no
46 -# write permission in sdkdir. See DISTCHECK_CONFIGURE_FLAGS in Makefile.am
47 -AC_ARG_WITH([sdkdir], [], [sdkdir="$withval"])
51 AC_SUBST([DRIVER_NAME])
53 diff --git a/include/Makefile.am b/include/Makefile.am
54 index 0d52b9b..271ffac 100644
55 --- a/include/Makefile.am
56 +++ b/include/Makefile.am
58 -sdk_HEADERS = libinput-properties.h
59 +# Location formerly known as 'sdkdir'
60 +xorgincludedir = $(includedir)/xorg
61 +xorginclude_HEADERS = libinput-properties.h
62 diff --git a/xorg-libinput.pc.in b/xorg-libinput.pc.in
63 index ff98189..9c0f506 100644
64 --- a/xorg-libinput.pc.in
65 +++ b/xorg-libinput.pc.in
69 +includedir=@includedir@
72 Description: X.Org libinput input driver.
73 Version: @PACKAGE_VERSION@
75 +Cflags: -I${includedir}/xorg