aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Teixeira <eduardo@FreeBSD.org>2022-09-23 20:00:38 +0000
committerNuno Teixeira <eduardo@FreeBSD.org>2022-09-23 20:10:10 +0000
commit86884d0464051313ab2271b888cf3d01616ef6ba (patch)
tree85dec7af58aed5eb4a65a3406cace0cc02483560
parentbe626dd64568a84be0234dc44f6acace02d8fca4 (diff)
downloadports-86884d0464051313ab2271b888cf3d01616ef6ba.tar.gz
ports-86884d0464051313ab2271b888cf3d01616ef6ba.zip
graphics/birdfont: Remove unneeded patch
- In conversation with upstream author, the following patch could be safely removed, since compiler catch as an error if stdlib.h is missing. --- #ifdef MAC #include <malloc/malloc.h> +#elif __FreeBSD__ +#include <stdlib.h> #else #include <malloc.h> #endif --- - Bump PORTREVISON
-rw-r--r--graphics/birdfont/Makefile1
-rw-r--r--graphics/birdfont/files/patch-libbirdgems_fit__cubic.c11
2 files changed, 1 insertions, 11 deletions
diff --git a/graphics/birdfont/Makefile b/graphics/birdfont/Makefile
index 662656068c6c..2576db343364 100644
--- a/graphics/birdfont/Makefile
+++ b/graphics/birdfont/Makefile
@@ -1,5 +1,6 @@
PORTNAME= birdfont
DISTVERSION= 2.32.3
+PORTREVISION= 1
CATEGORIES= graphics x11-fonts
MASTER_SITES= https://birdfont.org/releases/
diff --git a/graphics/birdfont/files/patch-libbirdgems_fit__cubic.c b/graphics/birdfont/files/patch-libbirdgems_fit__cubic.c
deleted file mode 100644
index 2a276711331b..000000000000
--- a/graphics/birdfont/files/patch-libbirdgems_fit__cubic.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- libbirdgems/fit_cubic.c.orig 2020-02-29 17:58:28 UTC
-+++ libbirdgems/fit_cubic.c
-@@ -24,6 +24,8 @@ Adapted to BirdFont by Johan Mattsson 2015
-
- #ifdef MAC
- #include <malloc/malloc.h>
-+#elif __FreeBSD__
-+#include <stdlib.h>
- #else
- #include <malloc.h>
- #endif