From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DF2915817D for ; Sat, 22 Jun 2024 18:54:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E9262BC09B; Sat, 22 Jun 2024 18:54:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 110DA2BC09B for ; Sat, 22 Jun 2024 18:54:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A5CF34072E for ; Sat, 22 Jun 2024 18:54:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68BBE1D4D for ; Sat, 22 Jun 2024 18:54:36 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1719082239.0a438b7168bc179f1328174c91d07fb78e860ee0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/nvidia-vaapi-driver/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/nvidia-vaapi-driver/files/nvidia-vaapi-driver-0.0.11_musl-support.patch X-VCS-Directories: media-libs/nvidia-vaapi-driver/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0a438b7168bc179f1328174c91d07fb78e860ee0 X-VCS-Branch: master Date: Sat, 22 Jun 2024 18:54:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 76c633bd-2798-468f-bcbe-03166037d163 X-Archives-Hash: 163520b7359d4d89bd60a6479dbda90b commit: 0a438b7168bc179f1328174c91d07fb78e860ee0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Jun 18 17:24:23 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jun 22 18:50:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a438b71 media-libs/nvidia-vaapi-driver: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../nvidia-vaapi-driver-0.0.11_musl-support.patch | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/media-libs/nvidia-vaapi-driver/files/nvidia-vaapi-driver-0.0.11_musl-support.patch b/media-libs/nvidia-vaapi-driver/files/nvidia-vaapi-driver-0.0.11_musl-support.patch deleted file mode 100644 index aa03fa825539..000000000000 --- a/media-libs/nvidia-vaapi-driver/files/nvidia-vaapi-driver-0.0.11_musl-support.patch +++ /dev/null @@ -1,27 +0,0 @@ -From https://github.com/elFarto/nvidia-vaapi-driver/pull/273 -From: "Azamat H. Hackimov" -Date: Fri, 9 Feb 2024 20:54:17 +0300 -Subject: [PATCH] Fix building with musl - -qsort_r invocations uses `__compar_d_fn_t` typedef that defined only in -glibc. Added missing typedef to fix compilation on musl systems. - -See: https://bugs.gentoo.org/924146 - -Signed-off-by: Azamat H. Hackimov ---- a/src/hevc.c -+++ b/src/hevc.c -@@ -3,6 +3,10 @@ - #include "vabackend.h" - #include - -+#if !defined(__GLIBC__) -+typedef int (*__compar_d_fn_t) (const void *, const void *, void *); -+#endif -+ - static const uint8_t ff_hevc_diag_scan4x4_x[16] = { - 0, 0, 1, 0, - 1, 2, 0, 1, --- -2.43.0 -