lwip-contrib-mac/ports/unix/proj/lib
2010-01-30 14:16:47 +00:00
..
lwipopts.h Update unix port to 1.3.0 before release 2008-01-15 13:10:51 +00:00
Makefile Fixed unix port after recent changes 2010-01-30 14:16:47 +00:00
README add unix projects to contrib module 2003-01-31 13:35:43 +00:00
unixlib.c Unix port: fixed compilation after moving timeout handling to timers.c; fixed some threading- and other issues with initialization 2010-01-07 10:21:13 +00:00

This directory contains an example of how to compile lwIP as a self
initialising shared library on Linux.

Some brief instructions:
 
* Compile the code:

 > make clean all

 This should produce liblwip4unixlib.so.  This is the shared library.

* Link an application against the shared library

 If you're using gcc you can do this by including -llwip4unixlib in
your link command. 

* Run your application
 
 Ensure that LD_LIBRARY_PATH includes the directory that contains
liblwip4unixlib.so (ie. this directory)



If you are unsure about shared libraries and libraries on linux in
general, you might find this HOWTO useful:

<http://www.tldp.org/HOWTO/Program-Library-HOWTO/>



Kieran Mansley, October 2002.