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 Linux"

From wiki.openlighting.org

Jump to: navigation, search
(Install libraries)
Line 21: Line 21:
 
   apt-get install libcppunit-dev libcppunit-1.12-1
 
   apt-get install libcppunit-dev libcppunit-1.12-1
  
From source or debian packages:
+
From source or debian packages (not in stable):
  
  libprotobuf2, libprotobuf-dev, protobuf-compiler
+
libprotobuf2, libprotobuf-dev, protobuf-compiler
  [http://code.google.com/p/protobuf/ ProtocolBuffers]
+
[http://code.google.com/p/protobuf/ ProtocolBuffers]
  
 
From source:
 
From source:
  
  [http://code.google.com/p/google-ctemplate/ CTemplate]
+
[http://code.google.com/p/google-ctemplate/ CTemplate]
  
 
Finally run ldconfig as root to pick up the new libraries
 
Finally run ldconfig as root to pick up the new libraries
  
 
   ldconfig
 
   ldconfig
 
  
 
==Configure==
 
==Configure==

Revision as of 10:38, 13 February 2009

Installing LLA on Debian From GIT/Archive

This describes how to get LLA working on a Debian system. It should be pretty similar for any other Linux based OS.


Checkout or Download an Archive

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

Install libraries

You need a couple of libraries installed for everything to work correctly. Some of these are available as Debian packages but others need to be downloaded.

First up we'll need microhttpd for the embedded web server (Note: you'll need version >= 0.4.0):

microhttpd


Install some more libraries with apt:

 apt-get install libcppunit-dev libcppunit-1.12-1

From source or debian packages (not in stable):

libprotobuf2, libprotobuf-dev, protobuf-compiler ProtocolBuffers

From source:

CTemplate

Finally run ldconfig as root to pick up the new libraries

 ldconfig

Configure

If you checked out the sources from git, you'll need to run

 autoreconf -i

After that run

 ./configure

Building & Testing

Build

 make

Run the tests

 make check

And install LLA

 sudo make install