The Open Lighting Project has moved!
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
Difference between revisions of "Building LLA for OS X"
From wiki.openlighting.org
m (link to other pages) |
(→Build Dependencies: PKG_CONFIG_PATH was incorrect.) |
||
Line 35: | Line 35: | ||
Add the following to your .profile | Add the following to your .profile | ||
− | export PKG_CONFIG_PATH=/usr/local/lib/ | + | export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig |
− | |||
== LLA Dependencies == | == LLA Dependencies == |
Latest revision as of 11:45, 9 May 2009
See also: Building LLA and the main article about LLA.
Base Development Tools
Download & install Xcode from http://developer.apple.com/tools/
Download & install fink from http://finkproject.org/
Install Git
If you want to use the git repos, you'll need to install git. If you're just going to use tarballs you can skip this step.
Git requires expat so download & install: http://sourceforge.net/projects/expat/ Download & install git: http://git.or.cz/
Add the following to your .bashrc file:
PATH=$PATH:/usr/local/bin:~/bin
Build Dependencies
apt-get install libtool make automake autoconf wget m4 pkgconfig
edit /sw/share/aclocal/pkg.m4 and replace
AC_DEFUN(PKG_CHECK_MODULES, [
with
AC_DEFUN([PKG_CHECK_MODULES], [
Add the following to your .profile
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
LLA Dependencies
Install Template.pm:
apt-get install template-pm586
Install XML::Simple
sudo perl -MCPAN -e shell; install XML::Simple