[Scummvm-cvs-logs] CVS: scummvm stdafx.h,1.7,1.8

Vasyl Tsvirkunov vasyl at users.sourceforge.net
Mon Nov 19 23:14:02 CET 2001


Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv2323

Modified Files:
	stdafx.h 
Log Message:
Added ability for ports to override all includes in stdafx.h. To use this feature
port must define symbol NONSTANDARD_PORT. Port must also provide
port-specific portdefs.h with all includes, symbol defines and everything else
port needs.

Index: stdafx.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/stdafx.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** stdafx.h	2001/11/11 16:54:45	1.7
--- stdafx.h	2001/11/20 07:13:01	1.8
***************
*** 3,6 ****
--- 3,12 ----
   *
   * $Log$
+  * Revision 1.8  2001/11/20 07:13:01  vasyl
+  * Added ability for ports to override all includes in stdafx.h. To use this feature
+  * port must define symbol NONSTANDARD_PORT. Port must also provide
+  * port-specific portdefs.h with all includes, symbol defines and everything else
+  * port needs.
+  *
   * Revision 1.7  2001/11/11 16:54:45  strigeus
   * implemented some sam&max specific features,
***************
*** 11,15 ****
   *
   */
! #if defined(WIN32)
  
  #if _MSC_VER > 1000
--- 17,26 ----
   *
   */
! 
! #if defined(NONSTANDARD_PORT)
! 
! #include <portdefs.h>
! 
! #elif defined(WIN32)
  
  #if _MSC_VER > 1000





More information about the Scummvm-git-logs mailing list