1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:57:35 +00:00

Ports: Update mandoc's patches to use git patches

This commit is contained in:
Ali Mohammad Pur 2022-05-17 21:18:24 +04:30 committed by Ali Mohammad Pur
parent 490e97233d
commit 1f64b93b21
16 changed files with 274 additions and 95 deletions

View file

@ -0,0 +1,25 @@
From e4b3fb04945980f8546c7437cb345fc0cb67f58d Mon Sep 17 00:00:00 2001
From: Brian Callahan <bcallah@openbsd.org>
Date: Sat, 25 Jan 2020 21:20:39 -0500
Subject: [PATCH 6/9] Use pcre2 for regex
---
dbm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dbm.c b/dbm.c
index f6b1259..3dc034a 100644
--- a/dbm.c
+++ b/dbm.c
@@ -31,7 +31,7 @@
#include <err.h>
#endif
#include <errno.h>
-#include <regex.h>
+#include <pcre2posix.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
--
2.36.1