From: <mik...@us...> - 2003-12-30 14:33:38
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv11175 Modified Files: configure ChangeLog INSTALL Log Message: 30/12/2003 Mikael Barbeaux * Added auto generation of index from the thread library into configure script Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- configure 30 Dec 2003 12:08:19 -0000 1.7 +++ configure 30 Dec 2003 14:33:29 -0000 1.8 @@ -44,6 +44,9 @@ check_command ar AR_EXE=$COMM + check_command ranlib + RANLIB_EXE=$COMM + check_command rm RM_EXE=$COMM @@ -117,6 +120,9 @@ echo "# Path to ar binary" >> Makefile echo "AR = $AR_EXE" >> Makefile echo "" >> Makefile + echo "# Path to ranlib binary" >> Makefile + echo "RANLIB = $RANLIB_EXE" >> Makefile + echo "" >> Makefile echo "# Path to rm binary" >> Makefile echo "RM = $RM_EXE" >> Makefile echo "" >> Makefile @@ -193,6 +199,21 @@ echo " @echo \"\"" >> Makefile echo " @echo -e \"Creating libsd_threads.a library : \\\\c\"" >> Makefile echo " @if \$(AR) -r libsd_threads.a \$(THREADS_OBJECTS) 2> .error; then \\" >> Makefile + echo " if test -s .error; then \\" >> Makefile + echo " echo -e \"Created with warnings :\"; \\" >> Makefile + echo " cat .error; \\" >> Makefile + echo " \$(RM) -f .error; \\" >> Makefile + echo " else \\" >> Makefile + echo " echo -e \"ok\"; \\" >> Makefile + echo " fi; \\" >> Makefile + echo " else \\" >> Makefile + echo " echo -e \"Creation failed : \"; \\" >> Makefile + echo " cat .error ; \\" >> Makefile + echo " \$(RM) -f .error; \\" >> Makefile + echo " false; \\" >> Makefile + echo " fi;" >> Makefile + echo " @echo -e \"Generating archive index : \\\\c\"" >> Makefile + echo " @if \$(RANLIB) libsd_threads.a 2> .error; then \\" >> Makefile echo " if test -s .error; then \\" >> Makefile echo " echo -e \"Created with warnings :\"; \\" >> Makefile echo " cat .error; \\" >> Makefile Index: ChangeLog =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- ChangeLog 30 Dec 2003 12:33:52 -0000 1.22 +++ ChangeLog 30 Dec 2003 14:33:29 -0000 1.23 @@ -24,6 +24,7 @@ ----------------------------------------------------------- 30/12/2003 Mikael Barbeaux + * Added auto generation of index from the thread library into configure script * Fixed a compilation error for HttpServletResponse * Implemented first versions of HttpServletRequest, HttpServletResponse and ServletException. Index: INSTALL =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/INSTALL,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- INSTALL 30 Dec 2003 10:45:11 -0000 1.5 +++ INSTALL 30 Dec 2003 14:33:29 -0000 1.6 @@ -4,14 +4,15 @@ This version is an early alpha. Compilation has been tester under Win32 ( MinGW -and Cygwin ) and Linux, but should also work on FreeBSD and MacOS X ( Cocoa ). +and Cygwin ) , Linux, FreeBSD and MacOS X ( Cocoa ). It should also work on +Solaris and other Unix like systems. 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 ) + Then go into the directory where you downloaded ( and unzipped ) the binary package and type the following : # if you are on Linux, FreeBSD or MacOS X : @@ -70,7 +71,7 @@ * UNAME command : uname * stdc++ library : libstdc++.a * winsock library : libws2_32.a (Windows MinGW only) - * pthread library : libpthread.a (Linux, MacOSX, FreeBSD only) + * pthread library : libpthread.a (Windows Cygwin, Linux, MacOSX, FreeBSD only) MikaelB |