diff --git a/Makefile b/Makefile index 4ed53e4..6c31794 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -LUA_CFLAGS=$(shell pkg-config --cflags lua53) -LUA_LIBS=$(shell pkg-config --libs lua53) +LUA_CFLAGS=$(shell pkg-config --cflags lua5.3) +LUA_LIBS=$(shell pkg-config --libs lua5.3) CC=gcc CFLAGS+=-O2 -Wall -march=native -pedantic -std=c99 -D_POSIX_C_SOURCE=20120607L -D_XOPEN_SOURCE $(LUA_CFLAGS) diff --git a/lua_utils.c b/lua_utils.c index 8230d29..0019e1d 100644 --- a/lua_utils.c +++ b/lua_utils.c @@ -8,9 +8,9 @@ * - Thomas Kolb */ -#include -#include -#include +#include +#include +#include #include "lua_utils.h" diff --git a/lua_wrappers.c b/lua_wrappers.c index 18e273c..004ad86 100644 --- a/lua_wrappers.c +++ b/lua_wrappers.c @@ -10,9 +10,9 @@ #include -#include -#include -#include +#include +#include +#include #include "fft.h" diff --git a/main.c b/main.c index 3ef4e10..e6da90b 100644 --- a/main.c +++ b/main.c @@ -17,9 +17,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include "lua_utils.h" #include "lua_wrappers.h"