head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.8 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.6 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.4 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.2 pkgsrc-2011Q2-base:1.2 pkgsrc-2010Q3:1.1.0.2 pkgsrc-2010Q3-base:1.1; locks; strict; comment @# @; 1.2 date 2010.12.14.18.12.40; author asau; state dead; branches; next 1.1; 1.1 date 2010.07.31.20.31.33; author dholland; state Exp; branches; next ; desc @@ 1.2 log @Update to f2c-20100903. Requested in PR pkg/44076 Changes since previous package: Wed Jul 7 10:51:12 MDT 2010 src/data.c, src/format.c, src/p1output.c: "invisible" tweaks to silence warnings seen in compilation under Ubuntu; version.c not changed. Fri Aug 27 09:14:17 MDT 2010 format.c: make sizeof(buf) depend on MAXNAMELEN to fix a bug with long names. Update mswin/f2c.exe.gz accordingly. Fri Sep 3 16:03:24 MDT 2010 fc: have "-m ..." modify CC rather than CFLAGS (to affect linking). @ text @$NetBSD: patch-al,v 1.1 2010/07/31 20:31:33 dholland Exp $ PR 43291: integer type misuse caught by gcc 4.4 --- src/data.c.orig 2001-03-01 21:16:12.000000000 +0000 +++ src/data.c @@@@ -360,7 +360,7 @@@@ k = elen - valp->vleng->constblock.Const.ci; if(k > 0) { dataline(varname, offset, TYBLANK); - fprintf(dfile, "\t%d\n", k); + fprintf(dfile, "\t%d\n", (int) k); } break; @ 1.1 log @Fix integer type misuse caught by gcc 4.4. PR 43291 from Makoto Fujiwara; the patches in the PR used unsafe (but less wrong) integer/pointer casts, so I did things somewhat differently. @ text @d1 1 a1 1 $NetBSD$ @