build: glx: Lower gl version to work with libglvnd
When using mesa with libglvnd support, mesa will no longer install the gl, glx, egl pkg-config files but instead let libglvnd provide them. libglvnd maintainers decided to change the versioning as it was mesa-specific previously. Now the libraries have versions of the API they expose[1]. This causes problems when building the X server: checking for glproto >= 1.4.17 gl >= 9.2.0... no configure: error: Package requirements (glproto >= 1.4.17 gl >= 9.2.0) were not met: Requested 'gl >= 9.2.0' but version of gl is 1.2 Lower the version requirement to 1.2 to allow building against libglvnd provided libraries [1]0dfaea2bcb
(cherry picked from commite6ef2b1240
)
This commit is contained in:
parent
3491f1dc5c
commit
a57729d318
|
@ -765,7 +765,7 @@ LIBDRI="dri >= 7.8.0"
|
||||||
LIBDRM="libdrm >= 2.4.89"
|
LIBDRM="libdrm >= 2.4.89"
|
||||||
LIBEGL="egl"
|
LIBEGL="egl"
|
||||||
LIBGBM="gbm >= 10.2.0"
|
LIBGBM="gbm >= 10.2.0"
|
||||||
LIBGL="gl >= 7.1.0"
|
LIBGL="gl >= 1.2"
|
||||||
LIBXEXT="xext >= 1.0.99.4"
|
LIBXEXT="xext >= 1.0.99.4"
|
||||||
LIBXFONT="xfont2 >= 2.0.0"
|
LIBXFONT="xfont2 >= 2.0.0"
|
||||||
LIBXI="xi >= 1.2.99.1"
|
LIBXI="xi >= 1.2.99.1"
|
||||||
|
@ -1116,7 +1116,7 @@ case "$DRI2,$HAVE_DRI2PROTO" in
|
||||||
yes,yes | auto,yes)
|
yes,yes | auto,yes)
|
||||||
AC_DEFINE(DRI2, 1, [Build DRI2 extension])
|
AC_DEFINE(DRI2, 1, [Build DRI2 extension])
|
||||||
DRI2=yes
|
DRI2=yes
|
||||||
LIBGL="gl >= 9.2.0"
|
LIBGL="gl >= 1.2"
|
||||||
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $DRI2PROTO"
|
SDK_REQUIRED_MODULES="$SDK_REQUIRED_MODULES $DRI2PROTO"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -39,7 +39,7 @@ if build_glx
|
||||||
common_dep,
|
common_dep,
|
||||||
dl_dep,
|
dl_dep,
|
||||||
dependency('glproto', version: '>= 1.4.17'),
|
dependency('glproto', version: '>= 1.4.17'),
|
||||||
dependency('gl', version: '>= 9.2.0'),
|
dependency('gl', version: '>= 1.2'),
|
||||||
],
|
],
|
||||||
c_args: [
|
c_args: [
|
||||||
glx_align64,
|
glx_align64,
|
||||||
|
|
Loading…
Reference in New Issue