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
(Run autoconf)
(Run reautoconf)
Line 40: Line 40:
  
 
  autoreconf -i
 
  autoreconf -i
[[Link title]]
 
  
 
== Do the usual steps==
 
== Do the usual steps==

Revision as of 09:46, 6 May 2009

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

Basic setup

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

Use Mac Ports to install stuff

$ port install pkgconfig protobuf-cpp cppunit unittest-cpp libtool

Set some env vars

set $PATH to point to something sane (you should also make sure you point it at your ctemplate and libmicrohttpd)

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

Optionally install microhttpd and ctemplate

If you want the http interface you need these

sudo port install libgcrypt

or you can disable https support (which should work with LLA just fine) by using the configure line "./configure --enable-https=no"

  • Make sure both of these are made AND installed before running "./configure" on LLA otherwise it will not detect the libraries and ignore all the HTTP server code

Checkout LLA

 git clone http://www.nomis52.net/git/lla
 cd lla

Run reautoconf

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

autoreconf -i

Do the usual steps

./configure
make
make check
sudo make install