我下载了Mesa并试图编译它:
sh ./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy
autoreconf: running: /usr/bin/autoconf
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --no-force
src/mesa/Makefile.sources:7: warning: BUILDDIR multiply defined in condition TRUE ...
src/mesa/Makefile.am:63: 'src/mesa/Makefile.sources' included from here
src/mesa/Makefile.am:62: ... 'BUILDDIR' previously defined here
autoreconf: Leaving directory `.'
checking build system type... x86_64-unknown-linux-gnu
xxxxx
xxxxx
checking for DRI3PROTO... yes
checking for PRESENTPROTO... yes
configure: error: DRI3 requires xcb >= 1.9.3
不确定这里的错误是什么?
我在这里关注了对话:https://www.libreoffice.org/bugzilla/show_bug.cgi?id=80848
但仍未解决。
你需要libxcb(需要xcb-proto(在这里可用:http://xcb.freedesktop.org/dist/。
构建过程相同:./autogen.sh; make; make install
请注意,libxcb 和 xcb-proto 需要最新的 xorg-macro,而您可能还没有。可在此处获得:http://anongit.freedesktop.org/git/xorg/util/macros.git/
使用命令检查您的版本:pkg-config --modversion xcb(感谢来自错误报告的 Jan 和 Matt(。如果响应为 1.9,则需要从 http://xcb.freedesktop.org/dist/中查找更新的版本并手动安装。我从 yum 存储库安装了 1.9-5 版,事实上,它是带有一些补丁的 1.9,还不够。
有同样的问题。 安装的版本是 XCB 1.9-5。 实际上查询 XCB 版本返回 1.9 并配置将其与 XCB_REQUIRED=1.9.3 进行比较。我修复了配置:XCB_REQUIRED=1.9
您可能缺少 debian 系统中的软件包 "libx11-xcb-dev" 使用命令 sudo apt-get install libx11-xcb-dev 安装软件包
试试这个sudo apt-get install -y libxcb1-dev
。