OSDN Git Service

Add MS7619SE
[uclinux-h8/uClinux-dist.git] / lib / osip2 / INSTALL
1
2        Downloading:
3        ===========
4
5 If you want the latest version, you can use the CVS:
6
7   $> export CVS_RSH="ssh"
8   $> cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/webcvs/osip co osip
9   $> ./autogen.sh
10      
11     Note that you must have libtool, autoconf & automake to be able
12     to run the autogen.sh script.
13
14 If you have downloaded the archive, run the following command instead:
15
16   $> tar -xvzf libosip2-X.X.X.tar.gz
17
18
19        Compilation:
20        ===========
21
22 As usual, run the following on unix platforms:
23
24   $> ./configure 
25   $> make
26   # make install
27
28 A specific README located in the "./help" directory exists
29 for each supported platforms. This is the definitive place
30 to find informations about specific platforms.
31
32 Note that osip is developped on a i386 linux and other architecture
33 might be broken. Reports if one appears broken.
34
35 A nice way would also be:
36
37   $> tar -xvzf libosip-0.X.X.tar.gz
38   $> mkdir linux-build
39   $> cd linux-build
40   $> ../libosip-0.X.X/configure
41   $> make
42   # make install
43
44 Here is a list of options you can give to the 'configure' command line:
45
46 configure --disable-mt             ==> disable any thread support,
47 flags: "-UOSIP_MT"
48
49 configure --disable-debug          ==> disable debug.
50 flags: "-UENABLE_DEBUG"
51
52 configure --disable-trace          ==> disable the trace in the logfile.
53 flags: "-UENABLE_TRACE"
54
55 configure --prefix=/your/local     ==> install in '$prefix' (default is /usr/local)
56
57