From db179f82b34e33b64605f2cc812a4b2ae0138df2 Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 29 Jun 2022 21:14:54 +0000 Subject: [PATCH] Do not build in lua 5.2 compatibility --- liblua/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblua/Makefile b/liblua/Makefile index 64c78f775..2acdf8eea 100644 --- a/liblua/Makefile +++ b/liblua/Makefile @@ -7,7 +7,7 @@ PLAT= none CC= gcc -std=gnu99 -CFLAGS= -O2 -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCFLAGS) +CFLAGS= -O2 -Wall -Wextra $(SYSCFLAGS) $(MYCFLAGS) LDFLAGS= $(SYSLDFLAGS) $(MYLDFLAGS) LIBS= -lm $(SYSLIBS) $(MYLIBS)