Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xorgxrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsorg71 <jay.sorg@gmail.com>2021-03-05 04:53:37 +0300
committerGitHub <noreply@github.com>2021-03-05 04:53:37 +0300
commit6ba766d5b500e67284349d04e11469fdf84b086a (patch)
treeb12ea550de4d2c782987aa725ee4df206f5614a1
parenta33dbff7006049b68b9ab4b88e15fb16768a6fb1 (diff)
parent419d61775cf223861442d405115290149bdfbd6f (diff)
Merge pull request #185 from jsorg71/glamor_help
add some glamor build checks/help
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index cb1c90f..7717432 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,6 +25,9 @@ PKG_CHECK_MODULES([XORG_SERVER], [xorg-server >= 0], [],
[AC_MSG_ERROR([please install xserver-xorg-dev, xorg-x11-server-sdk or xorg-x11-server-devel])])
if test "x${enable_glamor}" = "xyes"; then
PKG_CHECK_MODULES([XORG_SERVER_GLAMOR], [xorg-server >= 1.19.0])
+ PKG_CHECK_MODULES([XORG_SERVER_GBM], [gbm >= 0], [], [AC_MSG_ERROR([please install libgbm-dev or mesa-libgbm-devel])])
+ PKG_CHECK_MODULES([XORG_SERVER_EPOXY], [epoxy >= 0], [], [AC_MSG_ERROR([please install libepoxy-dev or libepoxy-devel])])
+ PKG_CHECK_MODULES([XORG_SERVER_EGL], [egl >= 0], [], [AC_MSG_ERROR([please install libegl1-mesa-dev or mesa-libEGL-devel])])
fi
if test "x$XRDP_CFLAGS" = "x"; then
@@ -73,7 +76,7 @@ if test "x${with_simd}" != "xno"; then
fi
AC_ARG_ENABLE(glamor, AS_HELP_STRING([--enable-glamor],
- [Use glamor (default: no)]),
+ [Use glamor(requires xorg server 1.19+) (default: no)]),
[], [enable_glamor=no])
AM_CONDITIONAL(WITH_GLAMOR, [test x$enable_glamor = xyes])