commit:     3daa1de4626fc42656ae9a366581d191007185b6
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Dec 22 07:08:44 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Wed Dec 22 07:54:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3daa1de4

app-admin/syslog-ng: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23465
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 .../files/syslog-ng-3.30.1-esmtp-pkgconfig.patch   | 50 ----------------------
 1 file changed, 50 deletions(-)

diff --git a/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch 
b/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch
deleted file mode 100644
index a9c761af98c2..000000000000
--- a/app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-https://bugs.gentoo.org/782643
-https://github.com/syslog-ng/syslog-ng/pull/3669/commits/b8284f8ecac588f6a321c779cce06cbe182611a5
-
-From b8284f8ecac588f6a321c779cce06cbe182611a5 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?L=C3=A1szl=C3=B3=20V=C3=A1rady?=
- <laszlo.var...@protonmail.com>
-Date: Sun, 9 May 2021 03:43:46 +0200
-Subject: [PATCH] configure: add pkg-config detection for libesmtp
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: László Várady <laszlo.var...@protonmail.com>
----
- configure.ac | 22 +++++++++++++---------
- 1 file changed, 13 insertions(+), 9 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 86b67ba9a2..bd6efa8711 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -1278,15 +1278,19 @@ if test "x$enable_smtp" != "xno" && test 
"x$with_libesmtp" != "xno"; then
-               CPPFLAGS="$CPPFLAGS_SAVE"
-               LDFLAGS="$LDFLAGS_SAVE"
-       else
--              AC_MSG_CHECKING(for libESMTP)
--              if libesmtp-config --version >/dev/null 2>&1; then
--                      AC_MSG_RESULT(yes)
--                      LIBESMTP_CFLAGS="`libesmtp-config --cflags`"
--                      LIBESMTP_LIBS="`libesmtp-config --libs`"
--              else
--                      AC_MSG_RESULT(no)
--                      libesmtp=no
--              fi
-+              PKG_CHECK_MODULES(LIBESMTP, libesmtp-1.0, libesmtp="yes", 
libesmtp="no")
-+              if test "x$libesmtp" = "xno"; then
-+                      AC_MSG_CHECKING(for libESMTP with libesmtp-config)
-+                      if libesmtp-config --version >/dev/null 2>&1; then
-+                              AC_MSG_RESULT(yes)
-+                              LIBESMTP_CFLAGS="`libesmtp-config --cflags`"
-+                              LIBESMTP_LIBS="`libesmtp-config --libs`"
-+                              libesmtp="yes"
-+                      else
-+                              AC_MSG_RESULT(no)
-+                              libesmtp=no
-+                      fi
-+                fi
-       fi
-       if test "x$enable_smtp" = "xyes" && test "x$libesmtp" = "xno"; then
-               AC_MSG_ERROR(libESMTP not found)

Reply via email to