尝试构建 gnome-settings-daemon 时未找到 ibus 包

尝试构建 gnome-settings-daemon 时未找到 ibus 包

gnome-settings-daemon我目前正在尝试从上游源代码构建。我首先使用以下方法克隆了该包

git clone git://git.gnome.org/gnome-settings-daemon

然后进入目录并开始构建过程

./autogen

然而,我最终遇到了以下错误:

checking for KEYBOARD... no
configure: error: Package requirements (xkbfile ibus-1.0 >= 1.4.99 gnome-desktop-3.0 >= 3.7.90) were not met:

No package 'ibus-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables KEYBOARD_CFLAGS
and KEYBOARD_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

我已经安装了ibusibus-gtk3包,所以我不确定实际的问题是什么。

答案1

我找到了两种可能的解决方案。第一种是使用以下方法安装ibus开发包(而不是发布包):

sudo apt-get install libibus-dev

或者,也可以不使用 iBus 直接运行构建

./autogen.sh --disable-ibus

相关内容