diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-27 21:19:22 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-27 21:19:22 +0100 |
commit | e5da30592de7265e67f18a6c80f1f4bcb9ebefbe (patch) | |
tree | aacf23e178c34cecc84c6b5880d259baeb8930ca /dev-lua/lpeg/files | |
parent | package.use.mask: enable back more use flags for net-im/prosody (diff) | |
download | gentoo-e5da30592de7265e67f18a6c80f1f4bcb9ebefbe.tar.gz gentoo-e5da30592de7265e67f18a6c80f1f4bcb9ebefbe.tar.bz2 gentoo-e5da30592de7265e67f18a6c80f1f4bcb9ebefbe.zip |
dev-lua/lpeg: drop old version
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/lpeg/files')
-rw-r--r-- | dev-lua/lpeg/files/lpeg-0.12.1-makefile.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-lua/lpeg/files/lpeg-0.12.1-makefile.patch b/dev-lua/lpeg/files/lpeg-0.12.1-makefile.patch deleted file mode 100644 index a0be0558aa97..000000000000 --- a/dev-lua/lpeg/files/lpeg-0.12.1-makefile.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- lpeg-0.12.1/makefile -+++ lpeg-0.12.1/makefile -@@ -1,7 +1,7 @@ - LIBNAME = lpeg - LUADIR = ../lua/ - --COPT = -O2 -+#COPT = -O2 - # COPT = -DLPEG_DEBUG -g - - CWARNS = -Wall -Wextra -pedantic \ -@@ -22,21 +22,21 @@ - # -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 - - # For Linux - linux: -- make lpeg.so "DLLFLAGS = -shared -fPIC" -+ $(MAKE) lpeg.so "DLLFLAGS = -shared -fPIC" - - # For Mac OS - macosx: -- make lpeg.so "DLLFLAGS = -bundle -undefined dynamic_lookup" -+ $(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 - |