aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-08-23 14:25:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-08-23 14:25:42 -0300
commita8675966eca71f005acd002df89053ee142ecef6 (patch)
tree857e6805477e733d4560888ae6ac8ba81df42219
parent3dc5475e239e2da52a380288ae8b293a6b019f81 (diff)
downloadlua-a8675966eca71f005acd002df89053ee142ecef6.tar.gz
lua-a8675966eca71f005acd002df89053ee142ecef6.tar.bz2
lua-a8675966eca71f005acd002df89053ee142ecef6.zip
detail: centralize all tests for Windows on variable 'LUA_WIN'
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index a3b4a393..308565f4 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.161 2011/07/08 20:07:11 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.162 2011/07/25 17:20:47 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -459,7 +459,7 @@
459 459
460/* On a Microsoft compiler on a Pentium, use assembler to avoid clashes 460/* On a Microsoft compiler on a Pentium, use assembler to avoid clashes
461 with a DirectX idiosyncrasy */ 461 with a DirectX idiosyncrasy */
462#if defined(_MSC_VER) && defined(_M_IX86) /* { */ 462#if defined(LUA_WIN) && defined(_M_IX86) /* { */
463 463
464#define MS_ASMTRICK 464#define MS_ASMTRICK
465 465