From: <mik...@us...> - 2003-12-30 10:45:16
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv7723 Modified Files: configure ChangeLog INSTALL Log Message: 30/12/2003 Mikael Barbeaux * Implemented a Http processor thread object. * Implemented a Http connections manager object. * Modified configure script for pthread library. Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- configure 30 Dec 2003 09:19:29 -0000 1.5 +++ configure 30 Dec 2003 10:45:11 -0000 1.6 @@ -59,6 +59,8 @@ if test $OS_TEST = "MINGW" then check_lib winsock libws2_32.a + else + check_lib pthread libpthread.a fi } Index: ChangeLog =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChangeLog 30 Dec 2003 09:19:29 -0000 1.19 +++ ChangeLog 30 Dec 2003 10:45:11 -0000 1.20 @@ -24,6 +24,9 @@ ----------------------------------------------------------- 30/12/2003 Mikael Barbeaux + * Implemented a Http processor thread object. + * Implemented a Http connections manager object. + * Modified configure script for pthread library. * Implemented a Http connection manager. 29/12/2003 Mikael Barbeaux Index: INSTALL =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/INSTALL,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- INSTALL 30 Dec 2003 09:19:29 -0000 1.4 +++ INSTALL 30 Dec 2003 10:45:11 -0000 1.5 @@ -7,10 +7,24 @@ and Cygwin ) and Linux, but should also work on FreeBSD and MacOS X ( Cocoa ). -1) Compiling from sources +1) Starting from binaries + + Download the lastest binary package for your OS ( typically, + Windows, Linux, FreeBSD and MacOS X binaries are provided ). + Then gi into the directory where you downloaded ( and unzipped ) + the binary package and type the following : + + # if you are on Linux, FreeBSD or MacOS X : + $> chmod 755 ui-web + $> ./ui-web + # if you are on Windows : + $> ui-web.exe + - Download the lastest sources package ( or retrieve sources from - CVS ). Then, go into the directory where your downloaded ( and +2) Compiling from sources + + Download the lastest sources package ( or retrieve sources from + CVS ). Then, go into the directory where you downloaded ( and unzipped ) the sources and type the following : $> chmod 755 configure @@ -45,6 +59,18 @@ GCC : http://gcc.gnu.org/ MinGW, mSYS & mSYS DTK : http://www.mingw.org Cygwin : http://www.cygwin.com + + The configure script will check : + + * G++ compiler : g++ + * Make command : make (Windows, Linux, MacOSX) - gmake (FreeBSD) + * AR command : ar + * RM command : rm + * STRIP command : strip + * UNAME command : uname + * stdc++ library : libstdc++.a + * winsock library : libws2_32.a (Windows MinGW only) + * pthread library : libpthread.a (Linux, MacOSX, FreeBSD only) MikaelB |