summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordavygrvy <davygrvy>2002-06-14 14:43:18 (GMT)
committerdavygrvy <davygrvy>2002-06-14 14:43:18 (GMT)
commite43bd0994afb6fc3120369822e2314d270711f01 (patch)
tree11e3e4da53fd1695edbb410e42e807a38b99f909 /win
parent6c7c87c7ad5d73f6b3333da5d1688ddf912d6188 (diff)
downloadtk-e43bd0994afb6fc3120369822e2314d270711f01.zip
tk-e43bd0994afb6fc3120369822e2314d270711f01.tar.gz
tk-e43bd0994afb6fc3120369822e2314d270711f01.tar.bz2
The test for compiler optimizations was in error. Thanks goes to Roy Terry
<royterry@earthlink.net> for his assistence with this.
Diffstat (limited to 'win')
-rw-r--r--win/rules.vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/rules.vc b/win/rules.vc
index 402a5d9..44b33b8 100644
--- a/win/rules.vc
+++ b/win/rules.vc
@@ -10,7 +10,7 @@
# Copyright (c) 2001-2002 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: rules.vc,v 1.2 2002/03/28 23:23:03 davygrvy Exp $
+# RCS: @(#) $Id: rules.vc,v 1.3 2002/06/14 14:43:18 davygrvy Exp $
#------------------------------------------------------------------------------
!ifndef _RULES_VC
@@ -46,7 +46,7 @@ MACHINE = IX86
#----------------------------------------------------------
### test for optimizations
-!if [nmakehlp -c -Ox]
+!if [nmakehlp -c -Otip]
!message *** Compiler has 'Optimizations'
OPTIMIZING = 1
!else