Update of /cvsroot/netrek/client/netrekxp/src/winkey In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv11912/src/winkey Modified Files: makecyg Log Message: Cygwin makefile changes: fixed up a bunch of problems to get build to work, still not perfect as libdir not resolving correctly. Also removed CYGWIN define from code and placed it as a compiler runtime define. Progress of Cygwin build is that client runs, but select() is broken. Most likely related to struct fd_set definition. Added observer support for shrink phasers, color phaser, warn and vary shields, and removed observer support for detcircle. Fixed detcircle so turning it off really does turn it off (oops). Fixed color phaser with regards to FPS changes, so it works at all framerates. Added observer support for showArmy for locking onto planets. Split varyShields into 2 netrekrc options, varyShields and varyShieldsColor, to be able to vary either/neither/both shield graphic and shield color with damage. Changed defaults for FPS client/server values back to 10 from 50. Let the user have it in netrekrc if they want to request a higher rate, and don't assume servers are running at 50 FPS. Require that feature packet to be sent to increase the update rate. Index: makecyg =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/src/winkey/makecyg,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- makecyg 23 Feb 2007 13:43:57 -0000 1.1 +++ makecyg 24 Feb 2007 10:19:55 -0000 1.2 @@ -5,10 +5,10 @@ #DEBUG = 1 # Cygwin -cc = bcc32 -rc = brcc32 -link = ilink32 -compileandlink = bcc32 +cc = gcc +rc = gcc +link = gcc +compileandlink = gcc !IFDEF DEBUG cflags = -O2 -5 -v -pr -DWIN32 -DBorland -tW -tWM @@ -27,4 +27,4 @@ $(link) $(LIBOPTS) -Tpd -aa -V4.0 -c -x -GS:SHSEG=rws C0d32.OBJ winkey.obj winkeyshared.obj, winkey.dll,, import32.lib cw32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib, winkeybcc.def clean: - del winkey.dll *.obj *.ilc *.ild *.ilf *.ils *.tds \ No newline at end of file + rm winkey.dll *.obj *.ilc *.ild *.ilf *.ils *.tds \ No newline at end of file