summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-03-10 06:56:41 +0000
committerwiz <wiz@pkgsrc.org>2022-03-10 06:56:41 +0000
commit3aa55f6a571bd0bbe54dfa7cb9bb0f3bd729c48b (patch)
treed6cbb86f29b8efcb825f2d99607a671529dd32c7 /chat
parentc78a9d48b45df0d583e1c964fdd213a3a4657e7b (diff)
downloadpkgsrc-3aa55f6a571bd0bbe54dfa7cb9bb0f3bd729c48b.tar.gz
libmesode: remove patch that is not (active) in distinfo
Diffstat (limited to 'chat')
-rw-r--r--chat/libmesode/distinfo3
-rw-r--r--chat/libmesode/patches/patch-configure.ac20
2 files changed, 1 insertions, 22 deletions
diff --git a/chat/libmesode/distinfo b/chat/libmesode/distinfo
index acd25516cc8..aef9210ddb4 100644
--- a/chat/libmesode/distinfo
+++ b/chat/libmesode/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2022/03/04 09:14:28 nia Exp $
+$NetBSD: distinfo,v 1.5 2022/03/10 06:56:41 wiz Exp $
BLAKE2s (libmesode-0.10.1.tar.gz) = de80e8880dff6c5a4cd971b9249702e0368bb1f88779d4fd37bbf2f2a871c2f5
SHA512 (libmesode-0.10.1.tar.gz) = 00890ac903ed367872903242116527f229255bcc8988f87005b12a40a903d3b6133dff26229387c49de1ba6d911707adfc73a8a662864843899322c90e10dba7
Size (libmesode-0.10.1.tar.gz) = 150629 bytes
-#SHA1 (patch-configure.ac) = 72f6d77a9f0edbe6f681bb872e7f0ce1fefe210a
diff --git a/chat/libmesode/patches/patch-configure.ac b/chat/libmesode/patches/patch-configure.ac
deleted file mode 100644
index c3e2d25293d..00000000000
--- a/chat/libmesode/patches/patch-configure.ac
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-configure.ac,v 1.1 2020/09/04 10:13:16 nia Exp $
-
-Fix quoting.
-
---- configure.ac.orig 2016-09-17 16:34:38.000000000 +0000
-+++ configure.ac
-@@ -18,11 +18,11 @@ AS_CASE([$host_os],
- [PLATFORM="nix"])
-
- PKG_CHECK_MODULES([expat], [expat >= 2.0.0],
-- [PC_REQUIRES+=(expat)],
-+ [PC_REQUIRES+=expat],
- [AC_CHECK_HEADER([expat.h],
- [
- expat_LIBS="-lexpat"
-- PC_LIBS+=($expat_LIBS)
-+ PC_LIBS+=$expat_LIBS
- ],
- [AC_MSG_ERROR([expat not found; expat required.])]
- )