aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-05 13:29:05 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-05 13:29:05 -0200
commit00c8a17a2da8fbeaf5b5542c0b7a0c4dd4fdfc91 (patch)
tree43a5e1d10c22e4a24840c2573f575d8a16dd26b7
parent166ce15512a32e374ee77fd72c2696f35c503efe (diff)
downloadlua-00c8a17a2da8fbeaf5b5542c0b7a0c4dd4fdfc91.tar.gz
lua-00c8a17a2da8fbeaf5b5542c0b7a0c4dd4fdfc91.tar.bz2
lua-00c8a17a2da8fbeaf5b5542c0b7a0c4dd4fdfc91.zip
by default, do not use Windows' goodies in Windows CE build
-rw-r--r--luaconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/luaconf.h b/luaconf.h
index 87f63b3f..86d3758e 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.163 2011/08/23 17:25:42 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.164 2011/10/07 19:53:05 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*/
@@ -29,8 +29,8 @@
29#endif 29#endif
30 30
31 31
32#if !defined(LUA_ANSI) && defined(_WIN32) 32#if !defined(LUA_ANSI) && defined(_WIN32) && !defined(_WIN32_WCE)
33#define LUA_WIN 33#define LUA_WIN /* enable goodies for regular Windows platforms */
34#endif 34#endif
35 35
36#if defined(LUA_WIN) 36#if defined(LUA_WIN)