From 901c9ba27afd50d709a084f8c35cc208ac5b85be Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 May 2020 23:35:40 +0200 Subject: Added Lua with libraries and nothing else --- Makefile | 2 ++ plop.c | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/Makefile b/Makefile index e7cdeeb..7607452 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ CFLAGS+=-Wall -Wextra -Wpedantic +CFLAGS+=-I/usr/include/lua5.3 +LDLIBS+=-llua5.3 plop: plop.o http.o http.h http.o: http.h diff --git a/plop.c b/plop.c index 669ac1a..41449ab 100644 --- a/plop.c +++ b/plop.c @@ -1,5 +1,8 @@ #include #include +#include +#include +#include #include #include #include @@ -134,6 +137,9 @@ int handle_server(struct pollfd * fdv, int fdc, const int size) /// \return Error code int main(int argc, char ** argv) { + lua_State * L = luaL_newstate(); + luaL_openlibs(L); + if (2 != argc) { return 4; -- cgit v1.1