1

我下载了最新的 libdvdcss 源代码并想编译然后安装在 Mountain Lion 上。

我挂断了./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$ 
4

1 回答 1

1

我有同样的问题。我可以通过安装 libtool 包在我的系统(GNU/Linux - Debian 7)上修复它。您是否检查过是否安装了此工具(或等效工具)?LT_INIT 宏似乎不需要任何更改。如安装文件中所述,我必须在安装 libtool 后执行aclocaland命令。autoreconf -i之后configure命令运行没有任何错误。

于 2013-09-06T21:45:10.717 回答