fixed build error (header include missing)

This commit is contained in:
punkrockguy318 2008-08-12 05:04:40 +00:00
parent f73de3b31e
commit 17df29de0f
3 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ if env['PLATFORM'] == 'cygwin':
env['LIBS'] = ['wsock32'];
if env['PLATFORM'] == 'win32':
env.Append(CPPPATH = [".", "drivers/win/", "drivers/common/", "drivers/", "drivers/win/zlib", "drivers/win/directx"])
env.Append(CPPPATH = [".", "drivers/win/", "drivers/common/", "drivers/", "drivers/win/zlib", "drivers/win/directx", "drivers/win/lua/include"])
env.Append(CPPDEFINES = ["PSS_STYLE=2", "WIN32", "_USE_SHARED_MEMORY_", "NETWORK", "FCEUDEF_DEBUGGER", "NOMINMAX", "NEED_MINGW_HACKS", "_WIN32_IE=0x0600"])
env.Append(LIBS = ["rpcrt4", "comctl32", "vfw32", "winmm", "ws2_32", "comdlg32", "ole32", "gdi32", "htmlhelp"])
else:

0
debian-crossbuild → debian-crossbuild.sh Normal file → Executable file
View File

View File

@ -2,6 +2,7 @@
#define _memorystream_h_
#include <iostream>
#include <string.h>
#include <vector>
#include <sstream>
#include <stdexcept>
@ -298,4 +299,4 @@ public:
};
#endif
#endif