# HG changeset patch # User Matthew Wild # Date 1619196629 -3600 # Node ID 04cfdac393cca274d78ff46d40aee7723907d696 # Parent a8caec6c542909c24e0af57ae101d41bfe8bde80 Makefile: drop -ansi for compat with Lua 5.3+ diff -r a8caec6c5429 -r 04cfdac393cc Makefile --- a/Makefile Sun Nov 19 20:06:07 2017 +0100 +++ b/Makefile Fri Apr 23 17:50:29 2021 +0100 @@ -9,7 +9,7 @@ T = lxp LIBNAME = $(T).so -COMMON_CFLAGS = -g -pedantic -Wall -O2 -fPIC -DPIC -ansi +COMMON_CFLAGS = -g -pedantic -Wall -O2 -fPIC -DPIC LUA_INC ?= -I/usr/include/lua$(LUA_V) EXPAT_INC ?= -I/usr/include CF = $(LUA_INC) $(EXPAT_INC) $(COMMON_CFLAGS) $(CFLAGS)