[Scummvm-git-logs] scummvm master -> 58b1c0cb5e58f82fc032a1d791eb61c407bfb403

bluegr bluegr at gmail.com
Sat Jun 26 05:41:50 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
58b1c0cb5e COMMON: LUA: Fix warnings for header search failure.


Commit: 58b1c0cb5e58f82fc032a1d791eb61c407bfb403
    https://github.com/scummvm/scummvm/commit/58b1c0cb5e58f82fc032a1d791eb61c407bfb403
Author: Fiodar Stryzhniou (fedor_qd at mail.ru)
Date: 2021-06-26T08:41:47+03:00

Commit Message:
COMMON: LUA: Fix warnings for header search failure.

WARNING: Can't find following headers in User or System Include Paths "luaconf.h" "lua.h" "lua.h"

Changed paths:
    common/lua/lauxlib.h
    common/lua/lua.h
    common/lua/lualib.h


diff --git a/common/lua/lauxlib.h b/common/lua/lauxlib.h
index d3c1d5ca35..303d4f6828 100644
--- a/common/lua/lauxlib.h
+++ b/common/lua/lauxlib.h
@@ -12,7 +12,7 @@
 #include <stddef.h>
 #include <stdio.h>
 
-#include "lua.h"
+#include "common/lua/lua.h"
 
 
 #if defined(LUA_COMPAT_GETN)
diff --git a/common/lua/lua.h b/common/lua/lua.h
index 4f557e462b..2c20f5fd08 100644
--- a/common/lua/lua.h
+++ b/common/lua/lua.h
@@ -15,7 +15,7 @@
 #include <stddef.h>
 
 
-#include "luaconf.h"
+#include "common/lua/luaconf.h"
 
 
 #define LUA_VERSION	"Lua 5.1"
diff --git a/common/lua/lualib.h b/common/lua/lualib.h
index 830f6a0894..0381c1c480 100644
--- a/common/lua/lualib.h
+++ b/common/lua/lualib.h
@@ -8,7 +8,7 @@
 #ifndef lualib_h
 #define lualib_h
 
-#include "lua.h"
+#include "common/lua/lua.h"
 
 
 /* Key to file-handle type */




More information about the Scummvm-git-logs mailing list