diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-10-12 19:43:01 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-10-13 15:40:04 +0200 |
commit | e62e3b71fb86132f36399821f254824a1faf9d2f (patch) | |
tree | cf0262f275822721b243926ea7cbfa5198f9f5e5 /dev-lua | |
parent | dev-libs/m17n-lib: remove unused patches (diff) | |
download | gentoo-e62e3b71fb86132f36399821f254824a1faf9d2f.tar.gz gentoo-e62e3b71fb86132f36399821f254824a1faf9d2f.tar.bz2 gentoo-e62e3b71fb86132f36399821f254824a1faf9d2f.zip |
dev-lua/lpeg: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua')
-rw-r--r-- | dev-lua/lpeg/files/lpeg-1.0.2-makefile.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-lua/lpeg/files/lpeg-1.0.2-makefile.patch b/dev-lua/lpeg/files/lpeg-1.0.2-makefile.patch deleted file mode 100644 index ec8150443da4..000000000000 --- a/dev-lua/lpeg/files/lpeg-1.0.2-makefile.patch +++ /dev/null @@ -1,31 +0,0 @@ -Respect user CFLAGS and LDFLAGS. - ---- lpeg-1.0.2/makefile -+++ lpeg-1.0.2/makefile -@@ -1,7 +1,7 @@ - LIBNAME = lpeg - LUADIR = ../lua/ - --COPT = -O2 -DNDEBUG -+COPT = -DNDEBUG - # COPT = -g - - CWARNS = -Wall -Wextra -pedantic \ -@@ -22,7 +22,7 @@ - # -Wunreachable-code \ - - --CFLAGS = $(CWARNS) $(COPT) -std=c99 -I$(LUADIR) -fPIC -+CFLAGS += $(CWARNS) $(COPT) -std=c99 -I$(LUADIR) -fPIC - CC = gcc - - FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o -@@ -36,7 +36,7 @@ - $(MAKE) lpeg.so "DLLFLAGS = -bundle -undefined dynamic_lookup" - - lpeg.so: $(FILES) -- env $(CC) $(DLLFLAGS) $(FILES) -o lpeg.so -+ env $(CC) $(DLLFLAGS) $(LDFLAGS) $(FILES) -o lpeg.so - - $(FILES): makefile - |