Hello,

if you are under windows, compile with:
make FLAGS='-Wall -g -DWIN32' LDFLAGS='-lwsock32'

if you want libspopc fully reentrant, compile with:
make FLAGS='-Wall -D_REENTRANT'

if you want to disable OpenSSL support, compile with:
make FLAGS='-Wall -Wextra -pedantic -pedantic-errors -Os' LDFLAGS=''

quick manuals are in doc/ directory

Type "make install" to install libspopc.a in /usr/lib/
(you must be root to do that)

To link YOUR program with libspopc, just add
#include <libspopc.h>
in program.c before your main() 
and compile as:
gcc -Wall -o program program.c -lspopc

enjoy !

