Changes between Version 5 and Version 6 of NativeGateway


Ignore:
Timestamp:
Oct 19, 2010, 1:13:24 PM (14 years ago)
Author:
zach
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NativeGateway

    v5 v6  
    1414
    1515[https://svn-batch.grid.pub.ro/svn/Sensei-Cookbook/SenseiGateway.tgz https://svn-batch.grid.pub.ro/svn/Sensei-Cookbook/SenseiGateway.tgz]
     16
     17== Requirements ==
     18
     19 * Linux
     20 * g++, make
     21 * [http://www.alhem.net/Sockets/ Sockets C++ library] (Also included in lib/Sockets-2.3.7; make; make install)
     22 * IPv6 support (for local UDP/IPv6 communications)
     23 * libxml2
     24 * openssl, openssl-dev                         
     25
     26== How to build it ==
     27
     28The top-level Makefile will build everything with the following, which places the executable in ./bin. Note that the executable must be run from the root of the project as shown below.
     29
     30{{{
     31make
     32./bin/sensei-executable
     33}}}
     34
     35To clean everything do
     36
     37{{{
     38make clean
     39}}}
     40
     41To build the Sockets++ library
     42
     43{{{
     44cd ./lib/Sockets-2.3.7
     45make
     46sudo make install
     47}}}
     48
    1649
    1750== Running the Gateway ==