git: d9a70beffe3a - main - audio/ft2-clone: Update to 1.99

From: Emanuel Haupt <ehaupt_at_FreeBSD.org>
Date: Thu, 18 Sep 2025 06:17:32 UTC
The branch main has been updated by ehaupt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d9a70beffe3ae6737baff39ff05be23e437dbf87

commit d9a70beffe3ae6737baff39ff05be23e437dbf87
Author:     Emanuel Haupt <ehaupt@FreeBSD.org>
AuthorDate: 2025-09-18 06:17:20 +0000
Commit:     Emanuel Haupt <ehaupt@FreeBSD.org>
CommitDate: 2025-09-18 06:17:28 +0000

    audio/ft2-clone: Update to 1.99
---
 audio/ft2-clone/Makefile                       |  2 +-
 audio/ft2-clone/distinfo                       |  6 ++--
 audio/ft2-clone/files/patch-src_ft2__unicode.c | 38 --------------------------
 3 files changed, 4 insertions(+), 42 deletions(-)

diff --git a/audio/ft2-clone/Makefile b/audio/ft2-clone/Makefile
index 78b55b200736..0a60345d2ee6 100644
--- a/audio/ft2-clone/Makefile
+++ b/audio/ft2-clone/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	ft2-clone
 DISTVERSIONPREFIX=	v
-DISTVERSION=	1.98
+DISTVERSION=	1.99
 CATEGORIES=	audio
 
 MAINTAINER=	ehaupt@FreeBSD.org
diff --git a/audio/ft2-clone/distinfo b/audio/ft2-clone/distinfo
index cdadccd9b0aa..50b66e88e428 100644
--- a/audio/ft2-clone/distinfo
+++ b/audio/ft2-clone/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757397054
-SHA256 (8bitbubsy-ft2-clone-v1.98_GH0.tar.gz) = 6078f209e2b9f4b27f15b0495627bf24e704d84dcb139374083cdfa250b8bb65
-SIZE (8bitbubsy-ft2-clone-v1.98_GH0.tar.gz) = 5205311
+TIMESTAMP = 1758175067
+SHA256 (8bitbubsy-ft2-clone-v1.99_GH0.tar.gz) = 63f1ffa375e557aebeceefb20a7080f0eef961a581dca1f751afc7801214305c
+SIZE (8bitbubsy-ft2-clone-v1.99_GH0.tar.gz) = 5204948
diff --git a/audio/ft2-clone/files/patch-src_ft2__unicode.c b/audio/ft2-clone/files/patch-src_ft2__unicode.c
deleted file mode 100644
index 94d1f1823e84..000000000000
--- a/audio/ft2-clone/files/patch-src_ft2__unicode.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- src/ft2_unicode.c.orig	2025-09-09 06:08:58 UTC
-+++ src/ft2_unicode.c
-@@ -4,20 +4,21 @@
- #endif
- 
- // for detecting if musl or glibc is used
--#if !defined _WIN32 && !defined __APPLE__
--	#ifndef _GNU_SOURCE
--		#define _GNU_SOURCE
--	  #include <features.h>
--	  #ifndef __USE_GNU
--	      #define __MUSL__
--	  #endif
--	  #undef _GNU_SOURCE /* don't contaminate other includes unnecessarily */
--	#else
--	  #include <features.h>
--	  #ifndef __USE_GNU
--	      #define __MUSL__
--	  #endif
--	#endif
-+#if defined(__linux__)
-+  /* Only Linux has glibc's <features.h>. On BSDs (including FreeBSD) and others,
-+     skip this block to avoid a missing-header error. */
-+  #ifdef __has_include
-+    #if __has_include(<features.h>)
-+      #include <features.h>
-+    #endif
-+  #else
-+    /* If the compiler doesn't support __has_include, assume features.h exists on glibc. */
-+    #include <features.h>
-+  #endif
-+  /* If <features.h> didn't define glibc's GNU extensions, assume musl. */
-+  #ifndef __USE_GNU
-+    #define __MUSL__
-+  #endif
- #endif
- 
- #include <stdlib.h>