Makefile: drop -ansi for compat with Lua 5.3+

Fri, 23 Apr 2021 17:50:29 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 23 Apr 2021 17:50:29 +0100
changeset 27
04cfdac393cc
parent 26
a8caec6c5429
child 28
0584f8251f88

Makefile: drop -ansi for compat with Lua 5.3+

Makefile file | annotate | diff | comparison | revisions
--- 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)

mercurial