git: 86884d046405 - main - graphics/birdfont: Remove unneeded patch
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 23 Sep 2022 20:10:24 UTC
The branch main has been updated by eduardo:
URL: https://cgit.FreeBSD.org/ports/commit/?id=86884d0464051313ab2271b888cf3d01616ef6ba
commit 86884d0464051313ab2271b888cf3d01616ef6ba
Author: Nuno Teixeira <eduardo@FreeBSD.org>
AuthorDate: 2022-09-23 20:00:38 +0000
Commit: Nuno Teixeira <eduardo@FreeBSD.org>
CommitDate: 2022-09-23 20:10:10 +0000
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
---
graphics/birdfont/Makefile | 1 +
graphics/birdfont/files/patch-libbirdgems_fit__cubic.c | 11 -----------
2 files changed, 1 insertion(+), 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