我目前正在尝试从上游源构建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.我已经安装了ibus和ibus-gtk3包,所以我不确定实际问题是什么。
发布于 2013-03-02 21:36:24
我找到了两种可能的解决方案。第一种方法是使用以下方法安装ibus开发包(与发行版包相反)
sudo apt-get install libibus-dev或者,可以在不使用iBus的情况下通过运行
./autogen.sh --disable-ibushttps://askubuntu.com/questions/263193
复制相似问题