aboutsummaryrefslogtreecommitdiff
path: root/0001-fix-don-t-hardcode-lua-header-path.patch
diff options
context:
space:
mode:
authordacctal <dacctalyt@gmail.com>2026-04-22 04:31:45 +0000
committerdacctal <dacctalyt@gmail.com>2026-04-22 04:31:45 +0000
commitaf89c510b1bf83bf982ccfb1028f26e515de338c (patch)
treeb411a2b3ec26f2fa670e12ae73cdbca15462766a /0001-fix-don-t-hardcode-lua-header-path.patch
parent131a67b1233a1b451348bd6b8533d811d10f4b75 (diff)
added default config & fixed headers
Diffstat (limited to '0001-fix-don-t-hardcode-lua-header-path.patch')
-rw-r--r--0001-fix-don-t-hardcode-lua-header-path.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/0001-fix-don-t-hardcode-lua-header-path.patch b/0001-fix-don-t-hardcode-lua-header-path.patch
new file mode 100644
index 0000000..653caaa
--- /dev/null
+++ b/0001-fix-don-t-hardcode-lua-header-path.patch
@@ -0,0 +1,29 @@
+From e3c8171d3904c04a09b4bc5fc556dad131d84aeb Mon Sep 17 00:00:00 2001
+From: frosty <gabriel@bwaaa.monster>
+Date: Wed, 22 Apr 2026 00:04:03 -0400
+Subject: [PATCH] fix: don't hardcode lua header path
+
+---
+ include/lua_build.hh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/include/lua_build.hh b/include/lua_build.hh
+index 1a7df06..a7cdf39 100644
+--- a/include/lua_build.hh
++++ b/include/lua_build.hh
+@@ -1,9 +1,9 @@
+ #ifndef LUA_BUILD
+ #define LUA_BUILD
+
+-#include <lua5.1/lua.h>
+-#include <lua5.1/lauxlib.h>
+-#include <lua5.1/lualib.h>
++#include <lua.h>
++#include <lauxlib.h>
++#include <lualib.h>
+
+ bool lua_build(const char *path);
+
+--
+2.52.0
+