Personal tools
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.

Difference between revisions of "OLA on OS X"

From wiki.openlighting.org

Jump to: navigation, search
(New page: This page describes how to get LLA 0.3 working on OS X. == Basic setup == * Install xcode * install git * install mac ports http://www.macports.org/ == Use Mac Ports to install stu...)
 
(Run autoreconf)
Line 30: Line 30:
  
 
If this is the first time run with -i to install the missing files
 
If this is the first time run with -i to install the missing files
 +
 +
autoconf -i
  
 
== Do the usual steps==
 
== Do the usual steps==

Revision as of 19:06, 6 February 2009

This page describes how to get LLA 0.3 working on OS X.

Basic setup

  • Install xcode
  • install git
  • install mac ports [[1]]

Use Mac Ports to install stuff

$ port install pkgconfig protobuf-cpp cppunit unittest-cpp

Set some env vars

set $PATH to point to something sane

export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
export CPPFLAGS="-I/opt/local/var/macports/software/protobuf-cpp/2.0.2_0/opt/local/include/"
export LDFLAGS="-L/opt/local/var/macports/software/protobuf-cpp/2.0.2_0/opt/local/lib/"


Optionally install microhttpd and ctemplate

If you want the http interface you need these

Run autoreconf

If this is the first time run with -i to install the missing files

autoconf -i

Do the usual steps

./configure
make
make check
sudo make install