summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--patches/xorg-server-1.17.2/0002-fix-building-with-glibc-2.28.patch34
-rw-r--r--patches/xorg-server-1.17.2/series5
-rw-r--r--patches/xorg-server-1.20.5/0001-compiler.h-Do-not-include-sys-io.h-on-ARM-with-glibc.patch55
-rw-r--r--patches/xorg-server-1.20.5/0002-xf86bigfont-always-include-unistd.h.patch (renamed from patches/xorg-server-1.17.2/0001-xf86bigfont-always-include-unistd.h.patch)8
-rw-r--r--patches/xorg-server-1.20.5/series5
-rw-r--r--rules/xorg-server.in70
-rw-r--r--rules/xorg-server.make50
7 files changed, 81 insertions, 146 deletions
diff --git a/patches/xorg-server-1.17.2/0002-fix-building-with-glibc-2.28.patch b/patches/xorg-server-1.17.2/0002-fix-building-with-glibc-2.28.patch
deleted file mode 100644
index 3299f6fb1..000000000
--- a/patches/xorg-server-1.17.2/0002-fix-building-with-glibc-2.28.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Fri, 24 May 2019 22:27:08 +0200
-Subject: [PATCH] fix building with glibc-2.28
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- hw/xfree86/common/xf86Xinput.c | 1 +
- hw/xfree86/os-support/linux/lnx_init.c | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/hw/xfree86/common/xf86Xinput.c b/hw/xfree86/common/xf86Xinput.c
-index 1fb5b1635e2c..24e0d3f68368 100644
---- a/hw/xfree86/common/xf86Xinput.c
-+++ b/hw/xfree86/common/xf86Xinput.c
-@@ -84,6 +84,7 @@
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
-+#include <sys/sysmacros.h>
- #ifdef HAVE_SYS_MKDEV_H
- #include <sys/mkdev.h> /* for major() & minor() on Solaris */
- #endif
-diff --git a/hw/xfree86/os-support/linux/lnx_init.c b/hw/xfree86/os-support/linux/lnx_init.c
-index 94853070dc6a..3d89a9d117e6 100644
---- a/hw/xfree86/os-support/linux/lnx_init.c
-+++ b/hw/xfree86/os-support/linux/lnx_init.c
-@@ -37,6 +37,7 @@
- #include "xf86_OSlib.h"
-
- #include <sys/stat.h>
-+#include <sys/sysmacros.h>
-
- #ifndef K_OFF
- #define K_OFF 0x4
diff --git a/patches/xorg-server-1.17.2/series b/patches/xorg-server-1.17.2/series
deleted file mode 100644
index a3e7a5cb5..000000000
--- a/patches/xorg-server-1.17.2/series
+++ /dev/null
@@ -1,5 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-xf86bigfont-always-include-unistd.h.patch
-0002-fix-building-with-glibc-2.28.patch
-# 220b45a212faa8cdb25392d7025c8b2c - git-ptx-patches magic
diff --git a/patches/xorg-server-1.20.5/0001-compiler.h-Do-not-include-sys-io.h-on-ARM-with-glibc.patch b/patches/xorg-server-1.20.5/0001-compiler.h-Do-not-include-sys-io.h-on-ARM-with-glibc.patch
new file mode 100644
index 000000000..a8fba9756
--- /dev/null
+++ b/patches/xorg-server-1.20.5/0001-compiler.h-Do-not-include-sys-io.h-on-ARM-with-glibc.patch
@@ -0,0 +1,55 @@
+From: Olivier Fourdan <ofourdan@redhat.com>
+Date: Mon, 1 Jul 2019 13:20:39 +0200
+Subject: [PATCH] compiler.h: Do not include sys/io.h on ARM with glibc
+
+<sys/io.h> on ARM hasn't worked for a long, long time, so it was removed
+it from glibc upstream.
+
+Remove the include to avoid a compilation failure on ARM with glibc.
+
+Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
+---
+ hw/xfree86/common/compiler.h | 30 ------------------------------
+ 1 file changed, 30 deletions(-)
+
+diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h
+index 7144c6a27f29..2b2008b3f427 100644
+--- a/hw/xfree86/common/compiler.h
++++ b/hw/xfree86/common/compiler.h
+@@ -758,36 +758,6 @@ inl(unsigned short port)
+ return xf86ReadMmio32Le((void *) ioBase, port);
+ }
+
+-#elif defined(__arm__) && defined(__linux__)
+-
+-/* for Linux on ARM, we use the LIBC inx/outx routines */
+-/* note that the appropriate setup via "ioperm" needs to be done */
+-/* *before* any inx/outx is done. */
+-
+-#include <sys/io.h>
+-
+-static __inline__ void
+-xf_outb(unsigned short port, unsigned char val)
+-{
+- outb(val, port);
+-}
+-
+-static __inline__ void
+-xf_outw(unsigned short port, unsigned short val)
+-{
+- outw(val, port);
+-}
+-
+-static __inline__ void
+-xf_outl(unsigned short port, unsigned int val)
+-{
+- outl(val, port);
+-}
+-
+-#define outb xf_outb
+-#define outw xf_outw
+-#define outl xf_outl
+-
+ #elif defined(__nds32__)
+
+ /*
diff --git a/patches/xorg-server-1.17.2/0001-xf86bigfont-always-include-unistd.h.patch b/patches/xorg-server-1.20.5/0002-xf86bigfont-always-include-unistd.h.patch
index 5792f3cd4..f34b1eb18 100644
--- a/patches/xorg-server-1.17.2/0001-xf86bigfont-always-include-unistd.h.patch
+++ b/patches/xorg-server-1.20.5/0002-xf86bigfont-always-include-unistd.h.patch
@@ -16,7 +16,7 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c
-index 46b3242d1bc9..65df73449b4c 100644
+index 529595bb7544..91c733c86fcd 100644
--- a/Xext/xf86bigfont.c
+++ b/Xext/xf86bigfont.c
@@ -39,6 +39,7 @@
@@ -25,9 +25,9 @@ index 46b3242d1bc9..65df73449b4c 100644
#include <sys/types.h>
+#include <unistd.h>
#ifdef HAS_SHM
- #if defined(linux) && (!defined(__GNU_LIBRARY__) || __GNU_LIBRARY__ < 2)
- /* libc4 does not define __GNU_LIBRARY__, libc5 defines __GNU_LIBRARY__ as 1 */
-@@ -58,7 +59,6 @@
+ #ifdef SVR4
+ #include <sys/sysmacros.h>
+@@ -51,7 +52,6 @@
#include <sys/shm.h>
#include <sys/stat.h>
#include <stdlib.h>
diff --git a/patches/xorg-server-1.20.5/series b/patches/xorg-server-1.20.5/series
new file mode 100644
index 000000000..d0423cb40
--- /dev/null
+++ b/patches/xorg-server-1.20.5/series
@@ -0,0 +1,5 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-compiler.h-Do-not-include-sys-io.h-on-ARM-with-glibc.patch
+0002-xf86bigfont-always-include-unistd.h.patch
+# ae8637745e425b5ff7d2bc7b315cc052 - git-ptx-patches magic
diff --git a/rules/xorg-server.in b/rules/xorg-server.in
index fd4fcd5d1..d83c3938f 100644
--- a/rules/xorg-server.in
+++ b/rules/xorg-server.in
@@ -8,6 +8,7 @@ menuconfig XORG_SERVER
select HOST_XORG_UTIL_MACROS
select HOST_XORG_LIB_XTRANS # needed for autoreconf
select HOST_XORG_FONT_UTIL # needed for autoreconf
+
#
# required dependencies, according to REQUIRED_MODULES
# and REQUIRED_LIBS in conrigure.ac:
@@ -32,10 +33,6 @@ menuconfig XORG_SERVER
select LIBDRM if XORG_SERVER_LIBDRM
- # input hotplug with udev
- select UDEV if XORG_SERVER_UDEV
- select UDEV_LIBUDEV if XORG_SERVER_UDEV
-
# glx triggered
select XORG_LIB_X11 if XORG_SERVER_EXT_GLX
select MESALIB if XORG_SERVER_EXT_GLX
@@ -84,7 +81,7 @@ menuconfig XORG_SERVER
select XORG_LIB_XRES if XORG_SERVER_EXT_XRES
# for kdrive
- select TSLIB if XORG_SERVER_TSLIB
+ select TSLIB
# FIXME: unclear dependencies
#select XORG_LIB_XXF86VM if XORG_SERVER_EXT_XV
@@ -196,20 +193,6 @@ config XORG_SERVER_XEPHYR
Xnest this kind of server supports all new features (extensions). It
doesn't depend on the features of the underlying X server.
-config XORG_SERVER_XFAKE
- bool
- depends on BROKEN
- prompt "fake server"
- help
- FIXME
-
-config XORG_SERVER_XFBDEV
- bool
- select XORG_SERVER_KDRIVE
- prompt "xfbdev server"
- help
- FIXME
-
endmenu
# ----------------------------------------------------------------------------
@@ -231,23 +214,12 @@ endmenu
menu "xorg options "
-config XORG_SERVER_OPT_AIGLX
- bool
- depends on BROKEN
- prompt "aiglx"
-
config XORG_SERVER_OPT_INSTALL_SETUID
bool
prompt "install server suid root"
help
--enable-install-setuid
-config XORG_SERVER_OPT_SECURE_RPC
- bool
- prompt "secure rpc"
- help
- Use secure RPC authentication (SUN-DES-1)
-
config XORG_SERVER_UDEV
bool
select XORG_SERVER_LIBDRM
@@ -255,40 +227,14 @@ config XORG_SERVER_UDEV
help
FIXME
-endmenu
-
-if XORG_SERVER_KDRIVE
-
-menu "kdrive options "
-
-config XORG_SERVER_TSLIB
- bool
- prompt "tslib support"
- help
- Build kdrive tslib touchscreen support
-
-config XORG_SERVER_KDRIVE_KBD
- bool
- prompt "kbd driver"
- help
- Build kbd driver for kdrive
-
-config XORG_SERVER_KDRIVE_MOUSE
- bool
- prompt "mouse driver"
- help
- Build mouse driver for kdrive
-
-config XORG_SERVER_KDRIVE_EVDEV
+config XORG_SERVER_OPT_SECURE_RPC
bool
- prompt "evdev driver"
+ prompt "secure rpc"
help
- Build evdev driver for kdrive
+ Use secure RPC authentication (SUN-DES-1)
endmenu
-endif
-
# ----------------------------------------------------------------------------
menu "xorg extensions "
@@ -383,11 +329,6 @@ config XORG_SERVER_EXT_GLX
help
--enable-glx
-config XORG_SERVER_OPT_GLX_TLS
- bool
- depends on XORG_SERVER_EXT_GLX
- prompt "tls support for glx"
-
config XORG_SERVER_EXT_DRI
bool
select XORG_SERVER_LIBDRM
@@ -485,4 +426,3 @@ endmenu
# ----------------------------------------------------------------------------
endif
-
diff --git a/rules/xorg-server.make b/rules/xorg-server.make
index 462e598be..ac2aaed82 100644
--- a/rules/xorg-server.make
+++ b/rules/xorg-server.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_XORG_SERVER) += xorg-server
#
# Paths and names
#
-XORG_SERVER_VERSION := 1.17.2
-XORG_SERVER_MD5 := 397e405566651150490ff493e463f1ad
+XORG_SERVER_VERSION := 1.20.5
+XORG_SERVER_MD5 := c9fc7e21e11286dbedd22c00df652130
XORG_SERVER := xorg-server-$(XORG_SERVER_VERSION)
XORG_SERVER_SUFFIX := tar.bz2
XORG_SERVER_URL := $(call ptx/mirror, XORG, individual/xserver/$(XORG_SERVER).$(XORG_SERVER_SUFFIX))
@@ -31,7 +31,9 @@ XORG_SERVER_LICENSE := MIT
XORG_SERVER_WRAPPER_BLACKLIST := \
TARGET_HARDEN_BINDNOW
-XORG_SERVER_ENV := $(CROSS_ENV) \
+XORG_SERVER_ENV := \
+ $(CROSS_ENV) \
+ ac_cv_lib_bsd_arc4random_buf=no \
ac_cv_sys_linker_h=yes \
ac_cv_file__usr_share_sgml_X11_defs_ent=no
@@ -53,6 +55,7 @@ XORG_SERVER_CONF_TOOL := autoconf
# use "=" here
XORG_SERVER_CONF_OPT = \
$(CROSS_AUTOCONF_USR) \
+ --datadir=$(XORG_DATADIR) \
--disable-strict-compilation \
--disable-docs \
--disable-devel-docs \
@@ -60,10 +63,10 @@ XORG_SERVER_CONF_OPT = \
--disable-static \
$(GLOBAL_LARGE_FILE_OPTION) \
--disable-debug \
+ --disable-listen-tcp \
+ --enable-listen-unix \
+ --enable-listen-local \
--disable-sparkle \
- --disable-install-libxf86config \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_OPT_AIGLX)-aiglx \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_OPT_GLX_TLS)-glx-tls \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_COMPOSITE)-composite \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_SHM)-mitshm \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_XRES)-xres \
@@ -84,7 +87,6 @@ XORG_SERVER_CONF_OPT = \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_XACE)-xace \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_XSELINUX)-xselinux \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_XCSECURITY)-xcsecurity \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_TSLIB)-tslib \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_DBE)-dbe \
--$(call ptx/endis, PTXCONF_XORG_LIB_X11_XF86BIGFONT)-xf86bigfont \
--$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_DPMS)-dpms \
@@ -102,9 +104,6 @@ XORG_SERVER_CONF_OPT = \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XORG)-pciaccess \
--enable-linux-acpi \
--enable-linux-apm \
- --disable-listen-tcp \
- --enable-listen-unix \
- --enable-listen-local \
--disable-systemd-logind \
--disable-suid-wrapper \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XORG)-xorg \
@@ -112,22 +111,19 @@ XORG_SERVER_CONF_OPT = \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XVFB)-xvfb \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XNEST)-xnest \
--disable-xquartz \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_DRI3)-xshmfence \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XWAYLAND)-xwayland \
+ --disable-xwayland-eglstream \
--disable-standalone-xpbproxy \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XWIN)-xwin \
--$(call ptx/endis, PTXCONF_XORG_SERVER_GLAMOR)-glamor \
--$(call ptx/endis, PTXCONF_XORG_SERVER_KDRIVE)-kdrive \
--$(call ptx/endis, PTXCONF_XORG_SERVER_XEPHYR)-xephyr \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_XFAKE)-xfake \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_XFBDEV)-xfbdev \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_KDRIVE_KBD)-kdrive-kbd \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_KDRIVE_MOUSE)-kdrive-mouse \
- --$(call ptx/endis, PTXCONF_XORG_SERVER_KDRIVE_EVDEV)-kdrive-evdev \
--disable-libunwind \
+ --$(call ptx/endis, PTXCONF_XORG_SERVER_EXT_DRI3)-xshmfence \
--$(call ptx/endis, PTXCONF_XORG_SERVER_OPT_INSTALL_SETUID)-install-setuid \
$(XORG_OPTIONS_TRANS) \
--$(call ptx/endis, PTXCONF_XORG_SERVER_OPT_SECURE_RPC)-secure-rpc \
+ --enable-input-thread \
--enable-xtrans-send-fds \
--without-doxygen \
$(XORG_OPTIONS_DOCS) \
@@ -142,15 +138,6 @@ XORG_SERVER_CONF_OPT = \
--with-sha1=libcrypto
#
-# FIXME rsc: what's the reason for this hack?
-#
-
-# if no value is given ignore the "--datadir" switch
-ifneq ($(call remove_quotes,$(XORG_DATADIR)),)
- XORG_SERVER_CONF_OPT += --datadir=$(XORG_DATADIR)
-endif
-
-#
# FIXME mol: what is this int10 stuff for?
#
#
@@ -189,13 +176,6 @@ ifdef PTXCONF_PRELINK
/etc/prelink.conf.d/xorg)
endif
-ifdef PTXCONF_XORG_SERVER_XORG
-ifdef PTXCONF_XORG_SERVER_UDEV
- @$(call install_copy, xorg-server, 0, 0, 0644, -, \
- $(XORG_DATADIR)/X11/xorg.conf.d/10-evdev.conf)
-endif
-endif
-
ifdef PTXCONF_XORG_SERVER_XVFB
@$(call install_copy, xorg-server, 0, 0, 0755, -, \
$(XORG_PREFIX)/bin/Xvfb)
@@ -216,11 +196,6 @@ ifdef PTXCONF_XORG_SERVER_XWIN
@$(call install_copy, xorg-server, 0, 0, 0755, -, \
$(XORG_PREFIX)/bin/Xwin)
endif
-ifdef PTXCONF_XORG_SERVER_XFBDEV
- @$(call install_copy, xorg-server, 0, 0, 0755, -, \
- $(XORG_PREFIX)/bin/Xfbdev)
-endif
-
ifdef PTXCONF_XORG_SERVER_XORG
@$(call install_copy, xorg-server, 0, 0, 0755, -, \
$(XORG_PREFIX)/bin/Xorg)
@@ -266,4 +241,3 @@ endif # PTXCONF_XORG_SERVER_XORG
@$(call touch)
# vim: syntax=make
-