mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
Allow building with udev features, eg. XORG_PLATFORM_BUS. Using libudev-devd, which provides a libudev api while speaking to devd. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
30 lines
442 B
Bash
Executable File
30 lines
442 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "--> install extra dependencies"
|
|
pkg install -y \
|
|
curl \
|
|
git \
|
|
libdrm \
|
|
libepoll-shim \
|
|
libX11 \
|
|
libxkbfile \
|
|
libxshmfence \
|
|
libXfont2 \
|
|
libxcvt \
|
|
libglvnd \
|
|
libepoxy \
|
|
libudev-devd \
|
|
mesa-dri \
|
|
mesa-libs \
|
|
meson \
|
|
pixman \
|
|
pkgconf \
|
|
xcb-util-image \
|
|
xcb-util-keysyms \
|
|
xcb-util-renderutil \
|
|
xcb-util-wm \
|
|
xkbcomp \
|
|
xorgproto
|