0

我正在尝试为 MacOS 编译 pjsip 2.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

我使用以下 shell 脚本安装了所有依赖项使用 URL https://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 回答