From 00c8a17a2da8fbeaf5b5542c0b7a0c4dd4fdfc91 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 5 Nov 2011 13:29:05 -0200 Subject: by default, do not use Windows' goodies in Windows CE build --- luaconf.h | 6 +++--- 1 file 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 @@ /* -** $Id: luaconf.h,v 1.163 2011/08/23 17:25:42 roberto Exp roberto $ +** $Id: luaconf.h,v 1.164 2011/10/07 19:53:05 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -29,8 +29,8 @@ #endif -#if !defined(LUA_ANSI) && defined(_WIN32) -#define LUA_WIN +#if !defined(LUA_ANSI) && defined(_WIN32) && !defined(_WIN32_WCE) +#define LUA_WIN /* enable goodies for regular Windows platforms */ #endif #if defined(LUA_WIN) -- cgit v1.2.3-55-g6feb