summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-12-22 08:08:44 +0100
committerJohn Helmert III <ajak@gentoo.org>2021-12-22 01:54:36 -0600
commit3daa1de4626fc42656ae9a366581d191007185b6 (patch)
treeb7f39de8070d1560b135f57c9b7910b02f8e6f0f /app-admin/syslog-ng/files
parentdev-python/sphinx_rtd_theme: Remove old (diff)
downloadgentoo-3daa1de4626fc42656ae9a366581d191007185b6.tar.gz
gentoo-3daa1de4626fc42656ae9a366581d191007185b6.tar.bz2
gentoo-3daa1de4626fc42656ae9a366581d191007185b6.zip
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@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/23465 Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'app-admin/syslog-ng/files')
-rw-r--r--app-admin/syslog-ng/files/syslog-ng-3.30.1-esmtp-pkgconfig.patch50
1 files changed, 0 insertions, 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.varady@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.varady@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)