Update of /cvsroot/netrek/client/netrekxp/src/cursors
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv11912/src/cursors

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/cursors/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:54 -0000	1.2
@@ -3,20 +3,19 @@
 #
 
 # Cygwin
-cc     = bcc32
-rc     = brcc32
-link   = ilink32
-compileandlink = bcc32
+cc     = gcc
+rc     = windres
+link   = gcc
 
 all: curslib.dll
 
-RESOURCES = curslib.res
+RESOURCES = curslib.o
 
 $(RESOURCES): curslib.rc
-	$(rc) -FOcurslib.res curslib.rc
+	$(rc) -o curslib.o curslib.rc
 
 curslib.dll:  $(RESOURCES)
-	$(link) -Tpd -aa -V4.0 -c -x C0d32.OBJ, curslib.dll,, import32.lib cw32i.lib, , $(RESOURCES)
+	$(link) -shared -o curslib.dll $(RESOURCES)
 
 clean:
-	del curslib
\ No newline at end of file
+	rm curslib.dll curslib.ilc curslib.ild curslib.ilf curslib.ils curslib.o curslib.tds
\ No newline at end of file