Adjustments for Visual C++ 8.0, as reported by Rainer Deyke.


			
			
				david-pic-changes
			
			
		
Werner Lemberg 17 years ago
parent 8575117c50
commit a56e526671
  1. 7
      ChangeLog
  2. 6
      builds/compiler/visualc.mk

@ -1,3 +1,10 @@
2008-03-23 Werner Lemberg <wl@gnu.org>
Adjustments for Visual C++ 8.0, as reported by Rainer Deyke.
* builds/compiler/visualc.mk (CFLAGS): Remove /W5.
(ANSIFLAGS): Add _CRT_SECURE_NO_DEPRECATE.
2008-03-21 Laurence Darby <ldarby>
* src/type1/t1objs.c (T1_Face_Init): Use `/Weight'. Patch from

@ -3,7 +3,7 @@
#
# Copyright 1996-2000, 2003, 2005, 2006 by
# Copyright 1996-2000, 2003, 2005, 2006, 2008 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
@ -66,11 +66,11 @@ TE := /Fe
# Use the ANSIFLAGS variable to define the compiler flags used to enfore
# ANSI compliance.
#
CFLAGS ?= /nologo /c /Ox /G5 /W3 /WX
CFLAGS ?= /nologo /c /Ox /W3 /WX
# ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
#
ANSIFLAGS := /Za
ANSIFLAGS := /Za /D_CRT_SECURE_NO_DEPRECATE
# Library linking

Loading…
Cancel
Save