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 0AE17158015 for ; Sun, 24 Dec 2023 23:01:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 563D42BC042; Sun, 24 Dec 2023 23:01:06 +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 3506B2BC042 for ; Sun, 24 Dec 2023 23:01:06 +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 4C78D33D0AF for ; Sun, 24 Dec 2023 23:01:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42B5214B1 for ; Sun, 24 Dec 2023 23:01:02 +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: <1703458840.783ae1e02d9596513cdddabb6801746370decf63.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/memcached/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/memcached/files/memcached-1.2.2-fbsd.patch net-misc/memcached/files/memcached-1.4.4-as-needed.patch X-VCS-Directories: net-misc/memcached/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 783ae1e02d9596513cdddabb6801746370decf63 X-VCS-Branch: master Date: Sun, 24 Dec 2023 23:01:02 +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: 0737c6d5-ff79-4203-9169-8f4f95918b90 X-Archives-Hash: 2fa33d06b2f5368073de5cb7cfe0c260 commit: 783ae1e02d9596513cdddabb6801746370decf63 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Dec 19 18:50:16 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Dec 24 23:00:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783ae1e0 net-misc/memcached: remove unused patches Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34373 Signed-off-by: Conrad Kostecki gentoo.org> .../memcached/files/memcached-1.2.2-fbsd.patch | 12 --------- .../files/memcached-1.4.4-as-needed.patch | 31 ---------------------- 2 files changed, 43 deletions(-) diff --git a/net-misc/memcached/files/memcached-1.2.2-fbsd.patch b/net-misc/memcached/files/memcached-1.2.2-fbsd.patch deleted file mode 100644 index 76f237698cf7..000000000000 --- a/net-misc/memcached/files/memcached-1.2.2-fbsd.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: memcached-1.2.2/memcached.h -=================================================================== ---- memcached-1.2.2.orig/memcached.h -+++ memcached-1.2.2/memcached.h -@@ -4,6 +4,7 @@ - #include "config.h" - #include - #include -+#include - #include - #include - diff --git a/net-misc/memcached/files/memcached-1.4.4-as-needed.patch b/net-misc/memcached/files/memcached-1.4.4-as-needed.patch deleted file mode 100644 index f6e5cde11057..000000000000 --- a/net-misc/memcached/files/memcached-1.4.4-as-needed.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -Nuar memcached-1.4.4.orig/configure.ac memcached-1.4.4/configure.ac ---- memcached-1.4.4.orig/configure.ac 2009-11-24 16:40:29.000000000 -0800 -+++ memcached-1.4.4/configure.ac 2009-11-27 15:20:38.000000000 -0800 -@@ -115,6 +115,14 @@ - AC_SUBST(ENABLE_SASL) - AC_SUBST(PROFILER_LDFLAGS) - -+dnl Check whether the user's system supports pthread before adding -pthread to CFLAGS -+dnl otherwise we won't get -l{threads} in LIBS -+dnl AFAIK -pthread should be added to LDFLAGS on BSD systems -+AC_SEARCH_LIBS(pthread_create, [pthread pthreads thread threads] ) -+if test "x$ac_cv_search_pthread_create" == "xno"; then -+ AC_MSG_ERROR([Can't enable threads without the POSIX thread library.]) -+fi -+ - AC_ARG_ENABLE(coverage, - [AS_HELP_STRING([--disable-coverage],[Disable code coverage])]) - -@@ -376,12 +384,6 @@ - - AC_C_HTONLL - --dnl Check whether the user's system supports pthread --AC_SEARCH_LIBS(pthread_create, pthread) --if test "x$ac_cv_search_pthread_create" = "xno"; then -- AC_MSG_ERROR([Can't enable threads without the POSIX thread library.]) --fi -- - AC_CHECK_FUNCS(mlockall) - AC_CHECK_FUNCS(getpagesizes) - AC_CHECK_FUNCS(memcntl)