From 4ffe4e703723aed87845fc92e046cdf3f821b0f9 Mon Sep 17 00:00:00 2001 From: Ohio2 Date: Tue, 29 Jun 2021 00:57:26 +0200 Subject: [PATCH] xorg --- xorg/Makefile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/xorg/Makefile b/xorg/Makefile index 6c3a0fa..a62b182 100644 --- a/xorg/Makefile +++ b/xorg/Makefile @@ -2,5 +2,22 @@ prepare: git clone https://cgit.freedesktop.org/xorg/xserver/ cd xserver xorg: - ./autogen.sh + ./configure \ + --prefix=/usr \ + --localstatedir=/var \ + --disable-systemd-logind \ + --disable-xwayland \ + --disable-unit-tests \ + --enable-glx \ + --enable-dri \ + --enable-dri2 \ + --enable-dri3 \ + --enable-glamor \ + --enable-xorg \ + --with-sha1=libcrypto \ + --with-systemd-daemon=off + make +install: + make install +