我正在尝试为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脚本安装了所有依赖项 使用网址https://gist.github.com/2049603下载脚本。
以及以下用于编译MacOS的pjsip的步骤
./configure
make dep
make clean
make
但我犯了错误。我试图将问题发布到pjsip邮件列表,但没有得到任何答案,似乎他们没有收到我的邮件。请有人可以提供帮助,或者如果可能,有人可以将我的问题发给pjsip。这将是一个很大的帮助。
提前致谢,
答案 0 :(得分:0)
“VideoDecodeAcceleration:没有这样的文件或目录”错误似乎与视频部分有关。
如果您不需要视频,请尝试将#define PJMEDIA_HAS_VIDEO 1
添加到config_site.h
来关闭视频。