forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
toluapp: Fix includes for newer Lua versions
- Loading branch information
1 parent
c3e995f
commit 9e3db4d
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/include/tolua++.h b/include/tolua++.h | ||
index ed53449..f57d56d 100644 | ||
--- a/include/tolua++.h | ||
+++ b/include/tolua++.h | ||
@@ -43,8 +43,8 @@ extern "C" { | ||
|
||
typedef int lua_Object; | ||
|
||
-#include "lua.h" | ||
-#include "lauxlib.h" | ||
+#include <lua.h> | ||
+#include <lauxlib.h> | ||
|
||
struct tolua_Error | ||
{ |