Update of /cvsroot/sharedaemon/sharedaemon-ui-web
In directory sc8-pr-cvs1:/tmp/cvs-serv9267
Modified Files:
configure ChangeLog
Log Message:
01/01/2004 Mikael Barbeaux
* HAPPY NEW YEAR !!!! :P
* Started to implement http processing code.
Index: configure
===================================================================
RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/configure,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- configure 30 Dec 2003 19:51:06 -0000 1.10
+++ configure 1 Jan 2004 10:44:12 -0000 1.11
@@ -78,7 +78,7 @@
if test -z ${COMM}
then
echo "Checking for $1 not found"
- help_comp $1;
+ help_comp;
else
echo "Checking for $1 ${COMM}"
fi
@@ -87,6 +87,22 @@
####
+# Help about compilation
+####
+help_comp() {
+ echo ""
+ echo "It seems that your system doesn't support compilation."
+ echo "If you are missing a binary or a library, try to install"
+ echo "the needed dependencies. If another error occurs, contact"
+ echo "me at this address : <mik...@us...>"
+ echo "or come into our forums : http://sharedaemon.sf.net"
+ echo "Exiting."
+ exit;
+}
+
+
+
+####
# Check for library
####
check_lib() {
@@ -298,18 +314,6 @@
echo " --help : Displays this help"
echo " --enable-optimize : Enable optimization"
echo " --disable-optimize : Disable optimization"
- exit;
-}
-
-
-
-####
-# Displays compilation help
-####
-help_comp() {
- echo ""
- echo "Compilation error"
- echo "Unable to find $1"
exit;
}
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- ChangeLog 31 Dec 2003 13:57:30 -0000 1.28
+++ ChangeLog 1 Jan 2004 10:44:12 -0000 1.29
@@ -23,6 +23,11 @@
-----------------------------------------------------------
+01/01/2004 Mikael Barbeaux
+ * HAPPY NEW YEAR !!!! :P
+ * Started to implement http processing code.
+
+
31/12/2003 Mikael Barbeaux
* Changed server port on test4
* Implemented a Session manager.
|