1

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にコメントしますが、どのような影響があるのか​​わかりません。質問:

  1. atk-bridge-2.0をインストールするにはどうすればよいですか?
  2. Wiresharkにそのままにしておいても大丈夫ですか?

ありがとう

4

1 に答える 1

1

依存関係を処理する macosx-setup.sh を使用しました。

于 2013-02-23T01:50:49.997 に答える