Received: by mail.netbsd.org (Postfix, from userid 605) id C2A2984D48; Fri, 22 Sep 2017 06:37:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5459A84D4E for ; Fri, 22 Sep 2017 06:37:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2dhDAKGvehQk for ; Fri, 22 Sep 2017 06:37:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D120D84D28 for ; Fri, 22 Sep 2017 06:37:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC192FA9A; Fri, 22 Sep 2017 06:37:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1506062246174150" MIME-Version: 1.0 Date: Fri, 22 Sep 2017 06:37:26 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/graphics/cinepaint To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170922063726.CC192FA9A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1506062246174150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Fri Sep 22 06:37:26 UTC 2017 Modified Files: pkgsrc/graphics/cinepaint: distinfo pkgsrc/graphics/cinepaint/patches: patch-aa Log Message: cinepaint: fix build by not providing a weird declaration of fgets PR pkg/52565 To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/graphics/cinepaint/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/cinepaint/patches/patch-aa Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1506062246174150 Content-Disposition: inline Content-Length: 2091 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/cinepaint/distinfo diff -u pkgsrc/graphics/cinepaint/distinfo:1.22 pkgsrc/graphics/cinepaint/distinfo:1.23 --- pkgsrc/graphics/cinepaint/distinfo:1.22 Thu Dec 22 21:03:12 2016 +++ pkgsrc/graphics/cinepaint/distinfo Fri Sep 22 06:37:26 2017 @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.22 2016/12/22 21:03:12 joerg Exp $ +$NetBSD: distinfo,v 1.23 2017/09/22 06:37:26 maya Exp $ SHA1 (cinepaint-0.22-1.tar.gz) = 717580b9b8b1044d76f1f0e4330e1c8104e2a206 RMD160 (cinepaint-0.22-1.tar.gz) = 1f8e06486ed5e74ad483abec305d4fcef0538572 SHA512 (cinepaint-0.22-1.tar.gz) = e2e7e8cfecb3588f54d0f70e6399f841639c9fd3da15c1bb5ff4b6f987e329450a81e465d12090eb9e181c41255a34f7655c3910a9467db9734495a4e4620fc5 Size (cinepaint-0.22-1.tar.gz) = 12380745 bytes -SHA1 (patch-aa) = a9a08e9ee48d235a7b862ee660af64afb77036e3 +SHA1 (patch-aa) = 9425d1a272aeaed14262626346b7bedd1fc4e135 SHA1 (patch-ab) = 601c0cb6dabacb4d88120a6b2784588bcf06b8b5 SHA1 (patch-ac) = 819bd88a7ed2a321d1ae7b1a37ac3e2551ff916d SHA1 (patch-ad) = 643ad8210fa479d4f2c3b83cebc5af92c9a310a1 Index: pkgsrc/graphics/cinepaint/patches/patch-aa diff -u pkgsrc/graphics/cinepaint/patches/patch-aa:1.2 pkgsrc/graphics/cinepaint/patches/patch-aa:1.3 --- pkgsrc/graphics/cinepaint/patches/patch-aa:1.2 Wed Nov 23 23:30:30 2011 +++ pkgsrc/graphics/cinepaint/patches/patch-aa Fri Sep 22 06:37:26 2017 @@ -1,4 +1,6 @@ -$NetBSD: patch-aa,v 1.2 2011/11/23 23:30:30 joerg Exp $ +$NetBSD: patch-aa,v 1.3 2017/09/22 06:37:26 maya Exp $ + +Don't declare fgets in a weird way --- plug-ins/hdr/fromrad.h.orig 2004-11-19 06:52:27.000000000 +0000 +++ plug-ins/hdr/fromrad.h @@ -15,3 +17,12 @@ $NetBSD: patch-aa,v 1.2 2011/11/23 23:30 #define copycolr(c1,c2) (c1[0]=c2[0],c1[1]=c2[1], \ c1[2]=c2[2],c1[3]=c2[3]) +@@ -104,7 +103,7 @@ extern char resolu_buf[RESOLU_BUFLEN]; + #define fprtresolu(sl,ns,fp) fprintf(fp,PIXSTDFMT,ns,sl) + #define fscnresolu(sl,ns,fp) (fscanf(fp,PIXSTDFMT,ns,sl)==2) + +-extern char *fgets(), *resolu2str(); ++extern char *resolu2str(); + + /* End of resolu.h defs */ + --_----------=_1506062246174150--