1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:37:44 +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,28 @@
From f71b62d6e3cc1d31ee46721dd7709f68aaa9b44a Mon Sep 17 00:00:00 2001
From: Brian Callahan <bcallah@openbsd.org>
Date: Sat, 25 Jan 2020 21:20:39 -0500
Subject: [PATCH 9/9] Fix mansearch.c
---
mansearch.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mansearch.c b/mansearch.c
index 0c457f9..b036f39 100644
--- a/mansearch.c
+++ b/mansearch.c
@@ -26,9 +26,9 @@
#endif
#include <errno.h>
#include <fcntl.h>
-#include <glob.h>
+#include "glob.h"
#include <limits.h>
-#include <regex.h>
+#include <pcre2posix.h>
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
--
2.36.1