Fri Mar 20 10:25:15 2020 UTC ()
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.


(micha)
diff -r1.25 -r1.26 pkgsrc/news/tin/distinfo
diff -r0 -r1.1 pkgsrc/news/tin/patches/patch-pcre_configure.in

cvs diff -r1.25 -r1.26 pkgsrc/news/tin/distinfo (expand / switch to unified diff)

--- pkgsrc/news/tin/distinfo 2019/12/26 21:57:50 1.25
+++ pkgsrc/news/tin/distinfo 2020/03/20 10:25:15 1.26
@@ -1,10 +1,11 @@ @@ -1,10 +1,11 @@
1$NetBSD: distinfo,v 1.25 2019/12/26 21:57:50 leot Exp $ 1$NetBSD: distinfo,v 1.26 2020/03/20 10:25:15 micha Exp $
2 2
3SHA1 (tin-2.4.4.tar.xz) = 7f4c1869cdcac4ac49bb70c6448538691fc19b4a 3SHA1 (tin-2.4.4.tar.xz) = 7f4c1869cdcac4ac49bb70c6448538691fc19b4a
4RMD160 (tin-2.4.4.tar.xz) = dbb0b44f3365059f155ec53874d283a18da9e0b1 4RMD160 (tin-2.4.4.tar.xz) = dbb0b44f3365059f155ec53874d283a18da9e0b1
5SHA512 (tin-2.4.4.tar.xz) = d9e907b5f8e43b21f348145264f6aeb64e021f1f2e6a2dbfd2d129a571f72690baf318aeea5a6c22a6dd62e4760ce2ea886ab2f3dbeb5b89fd7659df58352142 5SHA512 (tin-2.4.4.tar.xz) = d9e907b5f8e43b21f348145264f6aeb64e021f1f2e6a2dbfd2d129a571f72690baf318aeea5a6c22a6dd62e4760ce2ea886ab2f3dbeb5b89fd7659df58352142
6Size (tin-2.4.4.tar.xz) = 1545016 bytes 6Size (tin-2.4.4.tar.xz) = 1545016 bytes
7SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1 7SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1
8SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340 8SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340
9SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041 9SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041
 10SHA1 (patch-pcre_configure.in) = c062b56be504eef7526c6d7cec0bf619930dc67c
10SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e 11SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e

File Added: pkgsrc/news/tin/patches/Attic/patch-pcre_configure.in
$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
 )