hc
2023-02-18 a08c8b75ee83d7f62c9aefc23bfb42082aa4076c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
From 2826691dcd01f470d30dc8eb3bbd24a96cd3a93c Mon Sep 17 00:00:00 2001
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
Date: Sun, 23 Oct 2016 22:29:29 +0200
Subject: [PATCH] build: get rid of sdkdir
 
Use of sdkdir causes problems during cross-compilation, where the full
path is then appended to the DESTDIR, leading to host paths being
appended in the target:
    https://bugs.busybox.net/show_bug.cgi?id=8696
 
Other drivers (e.g. keyboard) got rid of sdkdir. Do the same.
 
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 Makefile.am         | 1 -
 configure.ac        | 9 ---------
 include/Makefile.am | 5 ++++-
 xorg-joystick.pc.in | 2 +-
 4 files changed, 5 insertions(+), 12 deletions(-)
 
diff --git a/Makefile.am b/Makefile.am
index 13946b8..c1567ae 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,7 +18,6 @@
 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-DISTCHECK_CONFIGURE_FLAGS = --with-sdkdir=\$${includedir}/xorg
 SUBDIRS = src man config include
 MAINTAINERCLEANFILES = ChangeLog INSTALL
 
diff --git a/configure.ac b/configure.ac
index b5834a5..44b9d27 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,15 +66,6 @@ AC_ARG_WITH(xorg-module-dir,
 inputdir=${moduledir}/input
 AC_SUBST(inputdir)
 
-# Define a configure option for an alternate X Server SDK Headers
-# X Server SDK location is required to install joystick header files
-AC_ARG_WITH(sdkdir,
-            AS_HELP_STRING([--with-sdkdir=<path>],
-                           [Xorg X Server sdk headers (default is autodetected)]),
-            [sdkdir="$withval"],
-            [sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server`])
-AC_SUBST(sdkdir)
-
 # Define a configure option to enable code debugging
 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug],
                                     [Disable debugging code (default: enabled)]),
diff --git a/include/Makefile.am b/include/Makefile.am
index ed618c2..d656568 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -18,4 +18,7 @@
 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-sdk_HEADERS = joystick-properties.h
+# Location formerly known as 'sdkdir'
+xorgincludedir = $(includedir)/xorg
+
+xorginclude_HEADERS = joystick-properties.h
diff --git a/xorg-joystick.pc.in b/xorg-joystick.pc.in
index 76bb92f..a5972c7 100644
--- a/xorg-joystick.pc.in
+++ b/xorg-joystick.pc.in
@@ -4,4 +4,4 @@ includedir=@includedir@
 Name: xorg-joystick
 Description: X.Org joystick input driver.
 Version: @PACKAGE_VERSION@
-Cflags: -I${includedir}
+Cflags: -I${includedir}/xorg
-- 
2.7.4