Wiresharkの要件としてMacOSX10.7.5にgtk+-3.7.10をインストールしようとしています。エラーの取得に失敗しました:
パッケージ「atk-bridge-2.0」が見つかりません
atkをインストールしてPKG_CONFIG_PATHに参照しました
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にそのままにしておいても大丈夫ですか?
ありがとう