7b0aa0154b
Version 1.16 - 2014/07/16 ------------------------- * Stephen Kitt Fixed accuracy problems on platforms with double-double support. * Stephen Kitt Added support for GCC format attribute. * Balint Reczey Fixed several visibility problems. * David Turner Changed trionan to use sigaction() instead of signal(). * Chris Liddell Fixed compiler warnings. Version 1.15 - 2010/09/12 ------------------------- * Jiri Hruska Added the trio_cprintff() and trio_cscanff() function. * Fixed calculation of fraction digits for %#g numbers involving rounding (reported by Lajos Foldy). Version 1.14 - 2010/01/26 ------------------------- * David Byron Added trio_xstring_append_max. * Fixed compilation problem on Cygwin due to lack of long double math (reported by Matthias Andree). * David Boyce Added #undef of standard stdio function names before assigning trio functions to them. * Matthias Andree Upgraded configure.in to use new macros instead of obsoleted macros. * Matthias Andree Added VPATH to Makefile.in * Tom Honermann Fixed problem with subnormal numbers which caused an infinite loop outputting leading spaces. * Adam McLaurin Improved parsing performance by avoiding memset() and memcpy() on character arrays. * Gideon Smeding Fixed %u scanning of signed numbers. * Gideon Smeding Fixed group scanning for non-matching input. * Fixed missing undo of look-ahead reading for scanf functions. This does only work for the scanf* and fscanf* functions, not dscanf* and cscanf* functions (reported by Gideon Smeding). * If the format string is empty, scanf does not attempt to read any input. * Ralf Junker Fixed Borland compilation for user-defined specifiers. Version 1.13 - 2008/11/09 ------------------------- * Ives Aerts Added the $<format|skip> format for user-defined specifiers, which is compatible with compiler warnings about mismatches between specifiers and arguments. * Added TRIO_DEPRECATED flag (reported by David Boyce) * Fixed rounding adjustment for long double (reported as bug item #2136686). * Added Makefile dependency for test target (reported as bug item #2136636). * David Boyce Fixed long long support for MSVC. * Fixed potential problem with read after buffer end for non-zero terminated strings (reported as bug item #1828465). * Andreas Stricker Added WinCE support. * Fixed number of significant digits for %g.
20 lines
458 B
Makefile
20 lines
458 B
Makefile
# $NetBSD: Makefile,v 1.14 2020/05/12 09:33:58 nia Exp $
|
|
#
|
|
|
|
DISTNAME= trio-1.16
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ctrio/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://daniel.haxx.se/projects/trio/
|
|
COMMENT= Fully matured and stable set of printf and string functions
|
|
LICENSE= isc
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
INSTALLATION_DIRS= include lib
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/Makefile ${WRKSRC}/Makefile
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|