INSTALL 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Downloading:
  2. ===========
  3. If you want the latest version, you can use the CVS:
  4. $> git clone git://git.savannah.gnu.org/osip.git
  5. $> ./autogen.sh
  6. Note that you must have libtool, autoconf & automake to be able
  7. to run the autogen.sh script.
  8. If you have downloaded the archive, run the following command instead:
  9. $> tar -xvzf libosip2-X.X.X.tar.gz
  10. Compilation:
  11. ===========
  12. As usual, run the following on unix platforms:
  13. $> ./configure
  14. $> make
  15. # make install
  16. A specific README located in the "./help" directory exists
  17. for each supported platforms. This is the definitive place
  18. to find informations about specific platforms.
  19. Note that osip is developped on a i386 linux and other architecture
  20. might be broken. Reports if one appears broken.
  21. A nice way would also be:
  22. $> tar -xvzf libosip-0.X.X.tar.gz
  23. $> mkdir linux-build
  24. $> cd linux-build
  25. $> ../libosip-0.X.X/configure
  26. $> make
  27. # make install
  28. Here is a list of options you can give to the 'configure' command line:
  29. configure --disable-mt ==> disable any thread support,
  30. flags: "-DOSIP_MONOTHREAD"
  31. configure --disable-debug ==> disable debug.
  32. configure --disable-trace ==> disable the trace in the logfile.
  33. flags: "-UENABLE_TRACE"
  34. configure --prefix=/your/local ==> install in '$prefix' (default is /usr/local)