尝试在 Mac OSX 10.7.5 中安装 gtk+-3.7.10 作为 Wireshark 要求。并未能收到错误:
找不到包“atk-bridge-2.0”
我在我的 PKG_CONFIG_PATH 中安装并引用了 atk
checking for ATK... no
configure: error: Package requirements (atk atk-bridge-2.0) were not met:
No package 'atk-bridge-2.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 ATK_CFLAGS
and ATK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
我使用 ./configure --without-atk-bridge,但似乎标志不再可用 http://osdir.com/ml/commits.gnome/2012-06/msg06188.html 我最终做了这个黑客:
if test x$enable_x11_backend = xyes; then
#ATK_PACKAGES="atk atk-bridge-2.0"
ATK_PACKAGES="atk"
else
ATK_PACKAGES="atk"
fi
评论 atk-bridge-2.0,不知道有什么影响。问题:
- 如何安装 atk-bridge-2.0?
- 把它留给 Wireshark 可以吗?
谢谢