1

我从http://code.google.com/p/audacity/downloads/detail?name=audacity-fullsrc-1.3.13-beta.tar.bz2&can=2&q=下载了 audacity 源代码

我必须在 Mac OS X 10.6 和 Xcode 3.2.5 上构建我的应用程序。

我尝试按照 audacitysourceCodeFolder/mac/ 中“compile.txt”文件中的步骤进行操作

但没有成功。

谁能帮我安装这个。因为我需要研究压缩文件的波形生成代码。

4

1 回答 1

2

跑:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

configure: error: pkg-config is required to compile audacity!

下载安装 MacPorts:

http://www.macports.org/install.php

安装 pkgconfig

sudo port install pkgconfig

再次运行:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

lib-widget-extra is required to build audacity. A copy is included in the audacity source distribution at lib-src/lib-widget-extra/.

构建并安装 lib-widget-extra:

cd /Users/Anne/Desktop/audacity-src-1.3.13-beta/lib-src/lib-widget-extra 
./configure
make
sudo make install

再次运行:

/Users/Anne/Desktop/audacity-src-1.3.13-beta/configure 

说:

configure: error: must have Ogg installed!

安装 libogg

sudo port install libogg

跑:

 /Users/Anne/Desktop/audacity-src-1.3.13-beta/configure --with-portmixer=no

建造:

cd /Users/Anne/Desktop/audacity-src-1.3.13-beta/
sudo make install

更多信息请查看: http:
//forum.audacityteam.org/
http://forum.audacityteam.org/viewtopic.php?f=19&t=55176

于 2011-04-15T09:37:27.217 回答