Thu Dec 15 11:25:37 2022 UTC ()
Mark MAKE_JOBS_SAFE=no (likely fixes NetBSD-current bulk build).


(schmonz)
diff -r1.2 -r1.3 pkgsrc/mail/libsrs2/Makefile

cvs diff -r1.2 -r1.3 pkgsrc/mail/libsrs2/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/libsrs2/Makefile 2017/08/16 20:21:10 1.2
+++ pkgsrc/mail/libsrs2/Makefile 2022/12/15 11:25:37 1.3
@@ -1,17 +1,21 @@ @@ -1,17 +1,21 @@
1# $NetBSD: Makefile,v 1.2 2017/08/16 20:21:10 wiz Exp $ 1# $NetBSD: Makefile,v 1.3 2022/12/15 11:25:37 schmonz Exp $
2 2
3DISTNAME= libsrs2-1.0.18 3DISTNAME= libsrs2-1.0.18
4CATEGORIES= mail 4CATEGORIES= mail
5MASTER_SITES= https://www.libsrs2.org/srs/ 5MASTER_SITES= https://www.libsrs2.org/srs/
6 6
7MAINTAINER= schmonz@NetBSD.org 7MAINTAINER= schmonz@NetBSD.org
8HOMEPAGE= https://www.libsrs2.org/ 8HOMEPAGE= https://www.libsrs2.org/
9COMMENT= Implementation of the Sender Rewriting Scheme for SMTP forwarding 9COMMENT= Implementation of the Sender Rewriting Scheme for SMTP forwarding
10LICENSE= gnu-gpl-v2 OR modified-bsd 10LICENSE= gnu-gpl-v2 OR modified-bsd
11 11
12CONFLICTS+= p5-Mail-SRS-[0-9]* 12CONFLICTS+= p5-Mail-SRS-[0-9]*
13 13
14GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
15USE_LIBTOOL= yes 15USE_LIBTOOL= yes
16 16
 17# for instance, `ar cru libsrs2.a srs2.o sha1.o` sometimes gives
 18# "ar: sha1.o: No such file or directory" on NetBSD with cc -pipe
 19MAKE_JOBS_SAFE= no
 20
17.include "../../mk/bsd.pkg.mk" 21.include "../../mk/bsd.pkg.mk"