2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/xorg/xorg-server/build

23 lines
436 B
Plaintext
Raw Normal View History

2019-06-27 05:47:59 +00:00
#!/bin/sh -e
2019-10-08 21:06:58 +00:00
patch -p1 < rootless_modesetting.patch
2020-08-30 07:23:54 +00:00
patch -p1 < fix-crash.patch
2019-10-08 21:06:58 +00:00
2019-06-27 05:47:59 +00:00
./configure \
--prefix=/usr \
2019-10-08 21:06:58 +00:00
--localstatedir=/var \
2019-06-28 06:28:15 +00:00
--disable-systemd-logind \
2019-08-18 09:06:38 +00:00
--disable-xwayland \
--disable-unit-tests \
2019-06-28 06:28:15 +00:00
--enable-glx \
--enable-dri \
--enable-dri2 \
--enable-dri3 \
2019-09-10 14:12:18 +00:00
--enable-glamor \
2019-08-18 09:06:38 +00:00
--enable-xorg \
--with-sha1=libcrypto \
--with-systemd-daemon=off
2019-06-27 05:47:59 +00:00
make
make DESTDIR="$1" install