From 7aa95cb7e190ba8a2407726e8a9df4846c157087 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 30 Apr 2006 07:21:42 +0000 Subject: [PATCH] Remove use of option /YX --- win/makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/win/makefile b/win/makefile index 641da64..b7594ab 100644 --- a/win/makefile +++ b/win/makefile @@ -1,6 +1,6 @@ # Copyright (C) 1995-2005, Index Data ApS # All rights reserved. -# $Id: makefile,v 1.11 2006-04-30 05:52:06 adam Exp $ +# $Id: makefile,v 1.12 2006-04-30 07:21:42 adam Exp $ ########################################################### ############### Parameters @@ -68,7 +68,7 @@ $(BINDIR)\yaz.dll: $(YAZ_DIR)\bin\yaz.dll copy "$(YAZ_DIR)\bin\yaz.dll" $(BINDIR) COMMON_C_OPTIONS= \ - /nologo /W3 /EHsc /FD /c \ + /nologo /W3 /EHsc /FD /c \ /D "_CRT_SECURE_NO_DEPRECATE" \ $(YAZ_DEF) \ /D "_WINDOWS" \ @@ -83,7 +83,7 @@ COMMON_C_INCLUDES= \ DEBUG_C_OPTIONS= \ /D "_DEBUG" \ - /MDd /Od /YX /Zi /Gm + /MDd /Od /Zi /Gm RELEASE_C_OPTIONS= \ /D "NDEBUG" \ @@ -100,7 +100,6 @@ RELEASE_C_OPTIONS= \ # /MDd = Runtime library: Multithread DLL (debug) # /Od = Disable optimising (debug) # /O2 = Optimize for speed -# /YX = Automatic use of precomipled headers # /Gm = Minimal rebuild (some cpp class stuff) # /Zi = Program database for debuggers # /ZI = Pgm database with special "edit&continue" stuff - not available in C5 -- 1.7.10.4