head 1.3; access; symbols pkgsrc-2026Q1:1.3.0.66 pkgsrc-2026Q1-base:1.3 pkgsrc-2025Q4:1.3.0.64 pkgsrc-2025Q4-base:1.3 pkgsrc-2025Q3:1.3.0.62 pkgsrc-2025Q3-base:1.3 pkgsrc-2025Q2:1.3.0.60 pkgsrc-2025Q2-base:1.3 pkgsrc-2025Q1:1.3.0.58 pkgsrc-2025Q1-base:1.3 pkgsrc-2024Q4:1.3.0.56 pkgsrc-2024Q4-base:1.3 pkgsrc-2024Q3:1.3.0.54 pkgsrc-2024Q3-base:1.3 pkgsrc-2024Q2:1.3.0.52 pkgsrc-2024Q2-base:1.3 pkgsrc-2024Q1:1.3.0.50 pkgsrc-2024Q1-base:1.3 pkgsrc-2023Q4:1.3.0.48 pkgsrc-2023Q4-base:1.3 pkgsrc-2023Q3:1.3.0.46 pkgsrc-2023Q3-base:1.3 pkgsrc-2023Q2:1.3.0.44 pkgsrc-2023Q2-base:1.3 pkgsrc-2023Q1:1.3.0.42 pkgsrc-2023Q1-base:1.3 pkgsrc-2022Q4:1.3.0.40 pkgsrc-2022Q4-base:1.3 pkgsrc-2022Q3:1.3.0.38 pkgsrc-2022Q3-base:1.3 pkgsrc-2022Q2:1.3.0.36 pkgsrc-2022Q2-base:1.3 pkgsrc-2022Q1:1.3.0.34 pkgsrc-2022Q1-base:1.3 pkgsrc-2021Q4:1.3.0.32 pkgsrc-2021Q4-base:1.3 pkgsrc-2021Q3:1.3.0.30 pkgsrc-2021Q3-base:1.3 pkgsrc-2021Q2:1.3.0.28 pkgsrc-2021Q2-base:1.3 pkgsrc-2021Q1:1.3.0.26 pkgsrc-2021Q1-base:1.3 pkgsrc-2020Q4:1.3.0.24 pkgsrc-2020Q4-base:1.3 pkgsrc-2020Q3:1.3.0.22 pkgsrc-2020Q3-base:1.3 pkgsrc-2020Q2:1.3.0.20 pkgsrc-2020Q2-base:1.3 pkgsrc-2020Q1:1.3.0.16 pkgsrc-2020Q1-base:1.3 pkgsrc-2019Q4:1.3.0.18 pkgsrc-2019Q4-base:1.3 pkgsrc-2019Q3:1.3.0.14 pkgsrc-2019Q3-base:1.3 pkgsrc-2019Q2:1.3.0.12 pkgsrc-2019Q2-base:1.3 pkgsrc-2019Q1:1.3.0.10 pkgsrc-2019Q1-base:1.3 pkgsrc-2018Q4:1.3.0.8 pkgsrc-2018Q4-base:1.3 pkgsrc-2018Q3:1.3.0.6 pkgsrc-2018Q3-base:1.3 pkgsrc-2018Q2:1.3.0.4 pkgsrc-2018Q2-base:1.3 pkgsrc-2018Q1:1.3.0.2 pkgsrc-2018Q1-base:1.3 pkgsrc-2017Q4:1.2.0.2 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.1.0.26 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.22 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.20 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.18 pkgsrc-2016Q4-base:1.1 pkgsrc-2016Q3:1.1.0.16 pkgsrc-2016Q3-base:1.1 pkgsrc-2016Q2:1.1.0.14 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.12 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.10 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.8 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.6 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.4 pkgsrc-2015Q1-base:1.1 pkgsrc-2014Q4:1.1.0.2 pkgsrc-2014Q4-base:1.1; locks; strict; comment @# @; 1.3 date 2018.01.22.04.40.07; author dbj; state Exp; branches; next 1.2; commitid 0fWXRLp6Q1bDkPnA; 1.2 date 2017.11.02.04.26.21; author agc; state Exp; branches; next 1.1; commitid jfGWsAhyy9ohRpdA; 1.1 date 2014.12.15.11.35.42; author mef; state Exp; branches 1.1.26.1; next ; commitid ZKDPe5VMWcGL382y; 1.1.26.1 date 2017.11.12.11.39.47; author bsiegert; state Exp; branches; next ; commitid cz3lfYk32uTbWJeA; desc @@ 1.3 log @update fflush.c and fseeko.c patch so that this builds on Darwin @ text @$NetBSD: patch-lib_fflush_c,v 1.2 2017/11/02 04:26:21 agc Exp $ fflush.c:108:16: error: incompatible types when assigning to type '__off_t' from type 'fpos_t' fp_->_offset = u.f; ^ --- lib/fflush.c.orig 2012-01-29 01:22:33.000000000 +0900 +++ lib/fflush.c 2014-11-20 23:50:41.000000000 +0900 @@@@ -91,7 +91,7 @@@@ update_fpos_cache (FILE *fp, off_t pos) { #if defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */ -# if defined __CYGWIN__ +# if defined(__CYGWIN__) || defined(__FreeBSD__) || defined(__APPLE__) /* fp_->_offset is typed as an integer. */ fp_->_offset = pos; # else @@@@ -105,7 +105,7 @@@@ off_t o; } u; u.o = pos; - fp_->_offset = u.f; + fp_->_offset = u.f._pos; # endif fp_->_flags |= __SOFF; #endif @ 1.2 log @patch fflush.c and fseeko.c so that this package builds on FreeBSD HEAD @ text @d1 1 a1 1 $NetBSD: patch-lib_fflush_c,v 1.1 2014/12/15 11:35:42 mef Exp $ d14 1 a14 1 +# if defined(__CYGWIN__) || defined(__FreeBSD__) @ 1.1 log @(pkgsrc) - Add two patches, to avoid error: incompatible types when assigning to type '__off_t' from type 'fpos_t' fp_->_offset = u.f; - Remove one patch patch-af, which had a comment, not necessary for now " also look in *.mk files as makefiles. bump pkg revision." (upstream) - Update 4.2 to 4.6 ---------------------- * Noteworthy changes in release 4.6 (2012-02-03) [stable] ** Bug fixes - lid -L no longer mishandles open-ended ranges like "..2" and "2.." - lid's -d, -o and -x options now work properly * Noteworthy changes in release 4.5 (2010-06-17) [stable] * Noteworthy changes in release 4.4 (2009-10-30) [beta] ------------ ** New features mkid and xtokid accept a new option --files0-from=FILE, to make them process only the files named in FILE. FILE must contain a list of NUL-terminated file names. ** Bug fixes mkid and xtokid now accept language specific options via the command line. * Noteworthy changes in release 4.3.92 (2008-10-18) [beta] -------------- ** Bug fixes fid: avoid a buffer overrun handle failed allocation, e.g., by strdup avoid potential realloc overflow mkid: avoid an infloop on some .el files all programs: detect write error on stdout ** Miscellaneous improvements revamp code and infrastructure, bringing it closer to coreutils' standards add automatically-generated man pages mkid recognize more suffixes: .ac, .mk, .bz2, .lzma. idutils is now licensed under the General Public License version 3 or later (GPLv3+). @ text @d1 1 a1 1 $NetBSD$ d9 10 a18 1 @@@@ -105,7 +105,7 @@@@ update_fpos_cache (FILE *fp, off_t pos) @ 1.1.26.1 log @Pullup ticket #5630 - requested by sevan devel/idutils: FreeBSD build fix Revisions pulled up: - devel/idutils/distinfo 1.10 - devel/idutils/patches/patch-lib_fflush_c 1.2 - devel/idutils/patches/patch-lib_fseeko_c 1.2 --- Module Name: pkgsrc Committed By: agc Date: Thu Nov 2 04:26:21 UTC 2017 Modified Files: pkgsrc/devel/idutils/patches: patch-lib_fflush_c patch-lib_fseeko_c Log Message: patch fflush.c and fseeko.c so that this package builds on FreeBSD HEAD --- Module Name: pkgsrc Committed By: maya Date: Thu Nov 2 04:54:27 UTC 2017 Modified Files: pkgsrc/devel/idutils: distinfo Log Message: idutils: regen patch sums after previous commit @ text @d9 1 a9 10 @@@@ -91,7 +91,7 @@@@ update_fpos_cache (FILE *fp, off_t pos) { #if defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */ -# if defined __CYGWIN__ +# if defined(__CYGWIN__) || defined(__FreeBSD__) /* fp_->_offset is typed as an integer. */ fp_->_offset = pos; # else @@@@ -105,7 +105,7 @@@@ @