在Mountain Lion上编译/安装libdvdcss
问题描述:
我下载了最新的libdvdcss源代码并想要编译并安装在Mountain Lion上。在Mountain Lion上编译/安装libdvdcss
我越来越挂在./configure上。看起来我没有合适的引导程序。
任何想法去哪里从这里?我应该调整“LT_INIT”吗?以什么价值?
这是./configure的输出。
BRETTs-Mac-Pro:libdvdcss brettmichaels$ ./configure --prefix=/usr
checking build system type... x86_64-apple-darwin12.3.0
checking host system type... x86_64-apple-darwin12.3.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... (cached) yes
./configure: line 2853: syntax error near unexpected token `win32-dll'
./configure: line 2853: `LT_INIT(win32-dll)'
BRETTs-Mac-Pro:libdvdcss brettmichaels$
答
我有同样的问题。我可以通过安装libtool软件包将它修复到我的系统(GNU/Linux - Debian 7)上。您是否检查过是否安装了此工具(或同等产品)? LT_INIT宏似乎不需要任何更改。 正如INSTALL文件所述,在安装libtool之后,我必须执行aclocal
和autoreconf -i
命令。之后,configure
命令在没有任何错误的情况下运行。