Added LUA_USE_LINUX and LUA_USE_MACOSX to enable POPEN functionality

This commit is contained in:
starkos 2009-01-11 21:50:11 +00:00
parent 77e4cce9bd
commit 3bb40f9dc9
2 changed files with 6 additions and 1 deletions

View File

@ -24,6 +24,7 @@ RC1 -> RC2
- Fixed separator between library dependencies in C++ makefiles
- Added missing os.copyfile() function
- Bug: Sometimes takes a long time to complete on Linux
- Enabled Lua popen support on Linux and Mac OS X
-----

View File

@ -72,7 +72,11 @@ end
defines { "_CRT_SECURE_NO_WARNINGS" }
configuration "linux"
links { "m" }
defines { "LUA_USE_LINUX" }
links { "m", "dl" }
configuration "macosx"
defines { "LUA_USE_MACOSX" }