2013-04-04 155 views
1

我下載了最新的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$ 

回答

1

我有同樣的問題。我可以通過安裝libtool軟件包將它修復到我的系統(GNU/Linux - Debian 7)上。您是否檢查過是否安裝了此工具(或同等產品)? LT_INIT宏似乎不需要任何更改。 正如INSTALL文件所述,在安裝libtool之後,我必須執行aclocalautoreconf -i命令。之後,configure命令在沒有任何錯誤的情況下運行。

相關問題