From: <mik...@us...> - 2003-12-28 12:52:45
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv13218 Modified Files: Makefile.win .cdtbuild Makefile.lin Makefile.bsd Makefile.osx Log Message: 28/12/2003 Mikael Barbeaux * Fixed Condition bugs under Win 95 / 98 / Me. The SignalObjectAndWait kernel function wasn't implemented on thoses operating systems. Index: Makefile.win =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.win,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Makefile.win 28 Dec 2003 12:35:14 -0000 1.12 +++ Makefile.win 28 Dec 2003 12:52:38 -0000 1.13 @@ -60,7 +60,7 @@ src/Main.o $(BIN) : $(OBJECTS) - $(CC) $(CCFLAGS) -o $(BIN) $(OBJECTS) $(LIBRARIES_DIR) $(LIBS) + $(CC) -o $(BIN) $(OBJECTS) $(LIBRARIES_DIR) $(LIBS) %.o : %.cpp $(CC) $(CCFLAGS) $(INCLUDE_DIRS) -o $@ -c $< Index: .cdtbuild =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/.cdtbuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- .cdtbuild 28 Dec 2003 12:35:14 -0000 1.4 +++ .cdtbuild 28 Dec 2003 12:52:38 -0000 1.5 @@ -14,6 +14,7 @@ </optionReference> <optionReference defaultValue="" id="cygwin.gnu.compiler.debugging.other"/> <optionReference defaultValue="true" id="cygwin.gnu.compiler.warnings.pedantic"/> + <optionReference defaultValue="-march=athlon-xp" id="cygwin.compiler.optimization.flags"/> </toolReference> <toolReference id="cdt.build.tool.cygwin.gnu.c.compiler"> <optionReference defaultValue="Optimize most (-O3)" id="cygwin.gnu.c.compiler.general.optimization.level"/> Index: Makefile.lin =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.lin,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Makefile.lin 26 Dec 2003 23:08:52 -0000 1.9 +++ Makefile.lin 28 Dec 2003 12:52:38 -0000 1.10 @@ -53,7 +53,7 @@ src/Main.o $(BIN) : $(OBJECTS) - $(CC) $(CCFLAGS) -o $(BIN) $(OBJECTS) $(LIBS) + $(CC) -o $(BIN) $(OBJECTS) $(LIBS) %.o : %.cpp $(CC) $(CCFLAGS) -o $@ -c $< Index: Makefile.bsd =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.bsd,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Makefile.bsd 26 Dec 2003 23:08:52 -0000 1.9 +++ Makefile.bsd 28 Dec 2003 12:52:38 -0000 1.10 @@ -54,7 +54,7 @@ src/Main.o $(BIN) : $(OBJECTS) - $(CC) $(CCFLAGS) -o $(BIN) $(OBJECTS) $(LIBS) + $(CC) -o $(BIN) $(OBJECTS) $(LIBS) %.o : %.cpp $(CC) $(CCFLAGS) -o $@ -c $< Index: Makefile.osx =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.osx,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Makefile.osx 26 Dec 2003 23:08:52 -0000 1.9 +++ Makefile.osx 28 Dec 2003 12:52:38 -0000 1.10 @@ -54,7 +54,7 @@ src/Main.o $(BIN) : $(OBJECTS) - $(CC) $(CCFLAGS) -o $(BIN) $(OBJECTS) $(LIBS) + $(CC) -o $(BIN) $(OBJECTS) $(LIBS) %.o : %.cpp $(CC) $(CCFLAGS) -o $@ -c $< |