Difference for ./pre.mak from version 1.7 to 1.8


version 1.7 version 1.8
Line 1
 
Line 1
 #this file must be included in all makefiles right after TOPDIR is defined  #this file must be included in all makefiles right after TOPDIR is defined
 include $(TOPDIR)/defines.mak  include $(TOPDIR)/defines.mak
   
   ifdef ENV_DJGPP
   SUPPORTS_NET_IP = 1
   endif
   
   ifdef ENV_LINUX
   SUPPORTS_NET_IP = 1
   endif
   
 #cygwin is pretty much the same thing, just needs extra cmdline args  #cygwin is pretty much the same thing, just needs extra cmdline args
 ifdef ENV_CYGWIN  ifdef ENV_CYGWIN
   SUPPORTS_NET_IP = 1
 ENV_MINGW32 = 1  ENV_MINGW32 = 1
 else  else
 #cygwin can handle long command lines, but mingw can't.  #cygwin can handle long command lines, but mingw can't.
 ifdef ENV_MINGW32  ifdef ENV_MINGW32
   SUPPORTS_NET_IP = 1
 CRAPPY_SHELL = 1  CRAPPY_SHELL = 1
 endif  endif
 endif  endif
   
 ifdef ENV_MSVC  ifdef ENV_MSVC
   SUPPORTS_NET_IP = 1
 CRAPPY_SHELL = 1  CRAPPY_SHELL = 1
   endif
   
   ifdef ENV_DJGPP_REALDOS
   ENV_DJGPP = 1
 endif  endif
 ifdef ENV_DJGPP  ifdef ENV_DJGPP
 CRAPPY_SHELL = 1  CRAPPY_SHELL = 1

Legend:
line(s) removed in v.1.7 
line(s) changed
 line(s) added in v.1.8