0

MacOS用にpjsip2.0.1をコンパイルしようとしています。しかし、実行した後、次のエラーが発生します。

framework CoreFoundation VideoDecodeAcceleration QuartzCore -lbz2 -lz    
i686-apple-darwin10-llvm-gcc-4.2: VideoDecodeAcceleration: No such file or directory
i686-apple-darwin10-llvm-gcc-4.2: QuartzCore: No such file or directory
i686-apple-darwin10-llvm-gcc-4.2: VideoDecodeAcceleration: No such file or directory
i686-apple-darwin10-llvm-gcc-4.2: QuartzCore: No such file or directory
make[2]: *** [../bin/pjlib-test-i386-apple-darwin10.8.0] Error 1
make[1]: *** [pjlib-test] Error 2
make: *** [all] Error 1

次のシェルスクリプトを使用してすべての依存関係をインストールしました。URLhttps://gist.github.com/2049603を使用してスクリプトをダウンロードします。

MacOS用のpjsipをコンパイルするために使用する次の手順

./configure
make dep
make clean
make

しかし、私は上記のエラーを取得しています。問題をpjsipメーリングリストに投稿しようとしましたが、何の回答も得られませんでした。彼らは私のメールを受け取っていないようです。誰かが助けてくれるか、可能であれば誰かが私の質問をpjsipに投稿してください。これは大きな助けになります。

前もって感謝します、

4

1 に答える 1

0

「VideoDecodeAcceleration: No such file or directory」エラーは、ビデオ パーツに関連しているようです。

#define PJMEDIA_HAS_VIDEO 1ビデオが必要ない場合は、 に追加してビデオをオフにしてみてくださいconfig_site.h

于 2012-09-27T10:28:19.277 に答える