summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authormicha <micha@pkgsrc.org>2020-03-20 10:25:15 +0000
committermicha <micha@pkgsrc.org>2020-03-20 10:25:15 +0000
commit140a11354e552bc0861dc37833905951905a6d79 (patch)
treed3408856a2748960603d65bd539992523d96131d /news
parent28e9ae13c1fa36e958670ee952a2f69d07b67857 (diff)
downloadpkgsrc-140a11354e552bc0861dc37833905951905a6d79.tar.gz
news/tin: Fix build with PKG_DEVELOPER=yes
This should fix the bulk build on NetBSD 9.0/aarch64 too. No revision bump, because patch is only for build system.
Diffstat (limited to 'news')
-rw-r--r--news/tin/distinfo3
-rw-r--r--news/tin/patches/patch-pcre_configure.in15
2 files changed, 17 insertions, 1 deletions
diff --git a/news/tin/distinfo b/news/tin/distinfo
index 2f6e52f07d8..98b159cf7a5 100644
--- a/news/tin/distinfo
+++ b/news/tin/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.25 2019/12/26 21:57:50 leot Exp $
+$NetBSD: distinfo,v 1.26 2020/03/20 10:25:15 micha Exp $
SHA1 (tin-2.4.4.tar.xz) = 7f4c1869cdcac4ac49bb70c6448538691fc19b4a
RMD160 (tin-2.4.4.tar.xz) = dbb0b44f3365059f155ec53874d283a18da9e0b1
@@ -7,4 +7,5 @@ Size (tin-2.4.4.tar.xz) = 1545016 bytes
SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1
SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340
SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041
+SHA1 (patch-pcre_configure.in) = c062b56be504eef7526c6d7cec0bf619930dc67c
SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e
diff --git a/news/tin/patches/patch-pcre_configure.in b/news/tin/patches/patch-pcre_configure.in
new file mode 100644
index 00000000000..fb0ee90f045
--- /dev/null
+++ b/news/tin/patches/patch-pcre_configure.in
@@ -0,0 +1,15 @@
+$NetBSD: patch-pcre_configure.in,v 1.1 2020/03/20 10:25:15 micha Exp $
+
+Replace nonportable operator "==" with POSIX equivalent.
+
+--- pcre/configure.in.orig 2017-05-03 17:47:33.000000000 +0000
++++ pcre/configure.in
+@@ -183,7 +183,7 @@ dnl Handle --enable-ebcdic
+
+ AC_ARG_ENABLE(ebcdic,
+ [ --enable-ebcdic assume EBCDIC coding rather than ASCII],
+-if test "$enableval" == "yes"; then
++if test "$enableval" = "yes"; then
+ EBCDIC=-DEBCDIC=1
+ fi
+ )