and added files
[bcm963xx.git] / userapps / opensource / libosip2 / INSTALL
1
2 A specific README located in the "./help" directory exists
3 for each supported platforms. This is the definitive place
4 to find informations about specific platforms.
5
6 Note that osip is developped on a i386 linux and other architecture
7 might be broken. Reports if one appears broken.
8
9 Common Install process for UNIX.
10
11   $> tar -xvzf libosip-x.x.x.tar.gz
12   $> mkdir bld-linux
13   $> CFLAGS="-I/usr/local/include/" ../configure
14   $> make
15   $> make install      (as root...)
16
17 I prefer to do:
18
19   $> tar -xvzf libosip-0.X.X.tar.gz
20   $> mkdir linux-build
21   $> cd linux-build
22   $> ../libosip-0.X.X/configure
23   $> make
24   $> make install
25
26 Here is a list of options you can give to the 'configure' command line:
27
28 configure --disable-mt             ==> disable any thread support,
29 flags: "-UOSIP_MT"
30
31 configure --disable-debug          ==> disable debug.
32 flags: "-UENABLE_DEBUG"
33
34 configure --disable-trace          ==> disable the trace in the logfile.
35 flags: "-UENABLE_TRACE"
36
37 configure --prefix=/your/local     ==> install in '$prefix' (default is /usr/local)
38
39