mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 20:17:46 +00:00
Ports: Update ed's patches to use git patches
This commit is contained in:
parent
25dc066af6
commit
f5a4d529c2
9 changed files with 133 additions and 51 deletions
26
Ports/ed/patches/0003-Manually-link-with-pcre2.patch
Normal file
26
Ports/ed/patches/0003-Manually-link-with-pcre2.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
From 492088ee0565b8d947d129125ab3518a4da6a7c9 Mon Sep 17 00:00:00 2001
|
||||
From: Brian Callahan <ibara@users.noreply.github.com>
|
||||
Date: Fri, 1 Apr 2022 02:54:00 +0200
|
||||
Subject: [PATCH 3/4] Manually link with pcre2
|
||||
|
||||
Co-Authored-By: EWouters <6179932+EWouters@users.noreply.github.com>
|
||||
---
|
||||
Makefile.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index f716df4..c1a7880 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -20,7 +20,7 @@ objs = buffer.o carg_parser.o global.o io.o main.o main_loop.o regex.o signal.o
|
||||
all : $(progname) r$(progname)
|
||||
|
||||
$(progname) : $(objs)
|
||||
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(objs)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(objs) -lpcre2-posix -lpcre2-8
|
||||
|
||||
r$(progname) : r$(progname).in
|
||||
cat $(VPATH)/r$(progname).in > $@
|
||||
--
|
||||
2.36.1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue