From: <mik...@us...> - 2003-12-30 09:19:32
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv27523 Modified Files: configure ChangeLog INSTALL Log Message: 30/12/2003 Mikael Barbeaux * Implemented a Http connection manager. Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- configure 29 Dec 2003 17:43:19 -0000 1.4 +++ configure 30 Dec 2003 09:19:29 -0000 1.5 @@ -31,8 +31,15 @@ check_command g++ COMP_EXE=$COMM - check_command make - MAKE_EXE=$COMM + + if test $SYSTEM = "FreeBSD" + then + check_command gmake + MAKE_EXE=$COMM + else + check_command make + MAKE_EXE=$COMM + fi check_command ar AR_EXE=$COMM @@ -153,7 +160,7 @@ else echo "CCFLAGS =" >> Makefile fi - echo "" + echo "CCFLAGS += -O3 -fexpensive-optimizations" >> Makefile echo "all : clean \$(BIN) strip" >> Makefile @@ -268,10 +275,6 @@ echo "Available options for configure :" echo " --help" echo " displays this help" - echo " --optimize" - echo " enable optimization flags" - echo " --debug" - echo " enable debugging" } @@ -293,7 +296,7 @@ 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 \\\/'` 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 \\\/'` +OTHER_OBJS=`find . -name '*.cpp' | sed '/\/ThreadException.cpp/d' | sed '/\/thread/d' | sed -e 's/.cpp/.o \\\/'` #### @@ -303,7 +306,8 @@ echo "ShareDaemon Web Interface - configure script" echo "Written by MikaelB" CONF_OPTIONS=$1 - +OS=`uname -n` +SYSTEM=`uname -s` if test -n "$CONF_OPTIONS" -a "$CONF_OPTIONS" = "--help" then @@ -312,8 +316,6 @@ check_config; fi -OS=`uname -n` -SYSTEM=`uname -s` echo "" echo "Check system : $OS - $SYSTEM" Index: ChangeLog =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChangeLog 29 Dec 2003 16:33:44 -0000 1.18 +++ ChangeLog 30 Dec 2003 09:19:29 -0000 1.19 @@ -23,6 +23,9 @@ ----------------------------------------------------------- +30/12/2003 Mikael Barbeaux + * Implemented a Http connection manager. + 29/12/2003 Mikael Barbeaux * Fixed a little bug into configure script. * Wrote a configure script that auto generates a Makefile Index: INSTALL =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/INSTALL,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- INSTALL 29 Dec 2003 16:05:37 -0000 1.3 +++ INSTALL 30 Dec 2003 09:19:29 -0000 1.4 @@ -13,6 +13,7 @@ CVS ). Then, go into the directory where your downloaded ( and unzipped ) the sources and type the following : + $> chmod 755 configure $> ./configure $> make |