NND,我在编译VLC-IOS版本也遇到这错误了。不过我已经解决了这个问题。
问题原因在于这个文件已经不存在了:http://sourceforge.net/code-snapshots/git/m/mo/modplug-xmms/git.git/modplug-xmms-git-bc8cb8248788c05b77da7d653f4c677354339a21.zip
它也提示了:The requested URL returned error: 404 Not Found
我研究了一下安装脚本,发现这个文件的URL是这个文件定义的:
$(VLCROOT)/ImportedSources/VLCKit/MobileVLCKit/ImportedSources/vlc/contrib/src/modplug/rules.mak
有这么两行:
MODPLUG_GIT_HASH := bc8cb8248788c05b77da7d653f4c677354339a21
MODPLUG_URL := http://sourceforge.net/code-snapshots/git/m/mo/modplug-xmms/git.git/modplug-xmms-git-$(MODPLUG_GIT_HASH).zip我对比了一下OS X版本的VLC源码,发现了这个URL已经无效了,它使用了别一个URL:
MODPLUG_GIT_HASH := bc8cb8248788c05b77da7d653f4c677354339a21
#MODPLUG_URL := http://sourceforge.net/code-snapshots/git/m/mo/modplug-xmms/git.git/modplug-xmms-git-$(MODPLUG_GIT_HASH).zip
MODPLUG_URL := http://download.videolan.org/pub/contrib/modplug-xmms-git-$(MODPLUG_GIT_HASH).zip使用这个新URL即可解决。