diff options
Diffstat (limited to 'textproc/par')
-rw-r--r-- | textproc/par/Makefile | 2 | ||||
-rw-r--r-- | textproc/par/files/patch-par.c | 24 |
2 files changed, 25 insertions, 1 deletions
diff --git a/textproc/par/Makefile b/textproc/par/Makefile index 5eaea70a9515..b12e9cd59f24 100644 --- a/textproc/par/Makefile +++ b/textproc/par/Makefile @@ -1,6 +1,6 @@ PORTNAME= par PORTVERSION= 1.53.0 -PORTREVISION= 2 +PORTREVISION= 3 PKGNAMESUFFIX= _format CATEGORIES= textproc MASTER_SITES= http://www.nicemice.net/par/ diff --git a/textproc/par/files/patch-par.c b/textproc/par/files/patch-par.c new file mode 100644 index 000000000000..8e3f237a3181 --- /dev/null +++ b/textproc/par/files/patch-par.c @@ -0,0 +1,24 @@ +--- par.c.orig 2025-01-24 19:16:10 UTC ++++ par.c +@@ -21,6 +21,9 @@ This is ANSI C code (C89). + #include <stdlib.h> + #include <string.h> + ++#include <sys/capsicum.h> ++#include <errno.h> ++ + #undef NULL + #define NULL ((void *) 0) + +@@ -724,6 +727,11 @@ int main(int argc, const char * const *argv) + errmsg_t errmsg = { '\0' }; + lineprop *props = NULL, *firstprop, *nextprop; + FILE *errout; ++ ++ if (cap_enter() == -1 && errno != ENOSYS) { ++ strcpy(errmsg, "unable to enter sandbox\n"); ++ goto parcleanup; ++ } + + /* Set the current locale from the environment: */ + |