HAMcast developers

Changes between Version 6 and Version 7 of documentation/howto/run


Ignore:
Timestamp:
02/13/12 09:38:39 (12 years ago)
Author:
Sebastian Meiling
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/howto/run

    v6 v7  
    55=== Middleware ===
    66
    7 Before you can start any other software, that uses HAMcast API and stack, you must configure and start the HAMcast middleware. To configure the HAMcast middleware see [wiki:documentation/howto/config here].
     7Before you can start any other software, that uses HAMcast API and stack, you must configure and start the HAMcast middleware. To configure the HAMcast middleware see [wiki:documentation/howto/config here]. The middleware requires a {{{middleware.ini}}} and ''libhamcast'' at runtime. If you have not installed ''libhamcast'' to standard folders, e.g. {{{/usr/lib/}}}, you must specifiy the environment variable {{{LD_LIBRARY_PATH}}} pointing to libhamcast path. If {{{middleware.ini}}} is not in the same directory as the ''middleware'' you can specifiy a path with option {{{-i <path/middleware.ini>}}}.
     8
     9To run middleware, use one of the following commands:
     10
     11{{{
     12export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path-to-libhamcast>
     13./middleware
     14}}}
     15
     16or
     17
     18{{{
     19export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path-to-libhamcast>
     20./middleware -i <path/middleware.ini>
     21}}}
     22
     23Check the REAMDE file for further information.
    824
    925----
     
    1632
    1733{{{
    18 export LD_LIBRARY_PATH=<path-to-libhamcast>
     34export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path-to-libhamcast>
    1935./<program>
    2036}}}