From: <mik...@us...> - 2003-12-29 16:33:47
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv23696 Modified Files: configure ChangeLog Log Message: 29/12/2003 Mikael Barbeaux * Fixed a little bug into configure script. Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- configure 29 Dec 2003 16:05:37 -0000 1.1 +++ configure 29 Dec 2003 16:33:44 -0000 1.2 @@ -119,6 +119,9 @@ if test $OS_TEST = "WINDOWS" then echo "BIN = ui-web.exe" >> Makefile + elif test $OS_TEST = "windows" + then + echo "BIN = ui-web.exe" >> Makefile else echo "BIN = ui-web" >> Makefile fi @@ -129,6 +132,7 @@ echo "# Thread lib objects" >> Makefile echo "THREADS_OBJECTS = $THREADS_OBJS" >> Makefile echo "$EXC_OBJ" >> Makefile + echo "$THREAD_EXCP_OBJ" >> Makefile echo "" >> Makefile echo "# Libraries" >> Makefile OS_TEST=`uname -s | cut -c1-5` @@ -285,7 +289,8 @@ #### THREADS_OBJS=`find . -name '*.cpp' | grep thread | sed -e 's/.cpp/.o \\\/'` EXC_OBJ=`find . -name '*.cpp' | grep /Exception.cpp | sed -e 's/.cpp/.o \\\/'` -OTHER_OBJS=`find . -name '*.cpp' | sed '/\/Exception.cpp/d' | sed '/\/thread/d' | sed -e 's/.cpp/.o \\\/'` +THREAD_EXCP_OBJ=`find . -name '*.cpp' | grep /ThreadException.cpp | sed -e 's/.cpp/.o \\\/'` +OTHER_OBJS=`find . -name '*.cpp' | sed '/\/Exception.cpp/d' | sed '/\/ThreadException.cpp/d' | sed '/\/thread/d' | sed -e 's/.cpp/.o \\\/'` #### Index: ChangeLog =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChangeLog 29 Dec 2003 16:05:37 -0000 1.17 +++ ChangeLog 29 Dec 2003 16:33:44 -0000 1.18 @@ -24,6 +24,7 @@ ----------------------------------------------------------- 29/12/2003 Mikael Barbeaux + * Fixed a little bug into configure script. * Wrote a configure script that auto generates a Makefile for the current plateform. |