OSDN Git Service

Correct quoted backslash handling, per bug [#2328].
[mingw/mingw-org-wsl.git] / mingwrt / ChangeLog
index d9daac2..aed25b8 100644 (file)
@@ -1,3 +1,463 @@
+2017-01-25  Jason Hood  <jadoxa@yahoo.com.au>
+
+       Correct quoted backslash handling, per bug [#2328].
+
+       * setargv.c (__mingw32_setargv): Within single quotes, backslashes
+       should be interpreted literally; copy them as-is.
+
+2017-01-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Use C99 blanks as default argv separators, per issue [#2329].
+
+       * setargv.c [_ISOC99_SOURCE]: Require it.
+       (__mingw32_setargv): Separate command line arguments based on...
+       [(quoted == 0) && isblank( c )]: ...this condition, instead of on...
+       [(quoted == 0) && isspace( c )]: ...this, so that only blanks, rather
+       than any whitespace characters, serve as default argument separators.
+
+2017-01-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Correct <strings.h> preprocessor logic; fix bug [#2322]
+
+       * include/strings.h (_stricmp, _strnicmp): Always declare, unless...
+       [__STRICT_ANSI__ && __NO_INLINE__]: ...both of these are defined.
+
+2016-11-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement POSIX.1 compatible setenv() and unsetenv() functions.
+
+       * mingwex/setenv.c: New file; it implements...
+       (__mingw_setenv): ...this function, providing common code for...
+       * include/stdlib.h [_POSIX_C_SOURCE >= 200112L] (setenv, unsetenv):
+       ...these user visible functions, implemented as __CRT_ALIAS inlines;
+       qualify them as __JMPSTUB__ and __LIBIMPL__ respectively, so ensuring
+       that their corresponding external representations are automatically
+       added to libmingwex.a
+
+       * Makefile.in (libmingwex.a): Add setenv.$OBJEXT
+
+2016-11-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Work around another C++11 compliance issue; fix bug [#2321].
+
+       * include/excpt.h (__try1_setup, __except1_teardown): Add spaces to
+       separate each use of '__wsize' and '__ts' macros from all surrounding
+       string literals, to ensure that C++ parses them as distinct tokens.
+
+2016-11-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Replace defective powf() and powl() function implementations.
+
+       * mingwex/math/powf.c mingwex/math/powl.c: Delete; replaced by...
+       * mingwex/math/pow_generic.sx: ...this new file; it implements...
+       (__x87pow): ...this generic power function back-end, serving...
+       (pow, powf, powl): ...each of these front-end entry points.
+
+       * Makefile.in (libmingwex.a): Add x87pow.$OBJEXT
+
+       * include/math.h (powf): Remove inline implementation; it no longer
+       offers any inline advantage.
+
+2016-11-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement unit tests for power functions.
+
+       * tests/testsuite.at.in: m4_include...
+       * tests/Makefile.in (testsuite): ...and add dependency on...
+       * tests/powerfunc.at: ...this new file; it specifies unit tests to
+       check POSIX.1-2008 compliance of results and errno assignment from...
+       (pow, powf, powl): ...each of these functions.
+
+2016-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add POSIX compliant errno assignments to log functions.
+
+       * include/errno.h: Make it assembly language compatible.
+       [__ASSEMBLER__]: Omit <_mingw.h>; do not declare prototype for...
+       (_errno): ...this accessor function; the declaration is syntactically
+       invalid, in assembly language code.
+
+       * mingwex/math/errno.sx: New file; when included by other assembly
+       language files, it provides bindings for assignement of any constant
+       defined in <errno.h> to the global errno variable, facilitated by...
+       (errno): ...this new GAS macro.
+
+       * mingwex/math/log_generic.sx: New file; it provides a generic back
+       end implementation for multiple logarithmic functions, accessed via...
+       (___x87log, ___x87log_chk): ...this pair of entry points, serving...
+       (log, logf, log): ...each of these primary functions; it replaces...
+       * mingwex/math/logf.s mingwex/math/logl.s: ...these; delete them.
+
+       * mingwex/math/log1p_generic.sx mingwex/math/log10_generic.sx
+       * mingwex/math/log2_generic.sx: New files; each acts as a wrapper for
+       log_generic.sx, providing the front end entry stubs for each of...
+       (log1p, log1pf, log1pl, log10, log10f, log10l, log2, log2f, log2l):
+       ...these functions; thus, they provide complete replacements for...
+       * mingwex/math/log1p.s mingwex/math/log1pf.s mingwex/math/log1pl.s
+       * mingwex/math/log10f.s mingwex/math/log10l.s mingwex/math/log2.s
+       * mingwex/math/log2f.s mingwex/math/log2l.s: ...these; delete them.
+
+       * mingwex/math/x87cvt_generic.sx: New file; it implements...
+       (___x87cvt, ___x87cvtf): ...this pair of return value conversion
+       routines, for conversion from the FPU's internal REAL10 data format,
+       to REAL8 and REAL4, for double and float functions respectively.
+
+       * Makefile.in (libmingwex.a): Add dependencies on...
+       (x87cvt.$OBJEXT), x87cvtf.$OBJEXT), x87log.$OBJEXT), x87logf.$OBJEXT):
+       ...these object modules; implement pattern rule to build them from...
+       (x87cvt_generic.sx, log_generic.sx): ...these generic sources; also
+       provide for building the respective log function entry stubs from
+       their respective generic sources.
+
+2016-11-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement unit tests for logarithmic functions.
+
+       * tests/testsuite.at.in: m4_include...
+       * tests/Makefile.in (testsuite): ...and add dependency on...
+       * tests/logarithms.at: ...this new file; it specifies unit tests to
+       check POSIX.1-2008 compliance of results and errno assignment from...
+       (log, logf, logl, log1p, log1pf, log1pl, log10, log10f, log10l, log2)
+       (log2f, log2l): ...each of these functions.
+
+2016-11-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement unit tests for ANSI printf() functions.
+
+       * tests/Makefile.in (testsuite): Add dependency for...
+       * tests/ansiprintf.at: ...this new file, and...
+       * tests/testsuite.at.in: ...m4_include it.
+
+2016-11-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Fix another printf() hex-float formatting bug.
+
+       * mingwex/stdio/pformat.c (__pformat_emit_xfloat)
+       [stream->flags & PFORMAT_ZEROFILL]: Ignore this; it should be...
+       [(stream->flags & PFORMAT_JUSTIFY) == PFORMAT_ZEROFILL]: ...thus.
+
+2016-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge post 2016-10-18 updates from legacy branch.
+
+       * include/io.h include/wchar.h: Updated.
+       * mingwex/stdio/pformat.c: Likewise.
+
+2016-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Work around MSDN inconsistencies in _finddata_t naming.
+
+       * include/io.h (_finddata64_t, _wfinddata64_): Define them
+       respectively as aberrant alternative data type names for each of...
+       (__finddata64_t, __wfinddata64_t): ...these original names.
+       (_wfinddata32_t): Similarly, define this with...
+       (__wfinddata32_t): ...this alternative name.
+
+       * include/wchar.h (_wfinddata32_t): Correct references in comments.
+
+2016-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Fix a potentially infinite printf() format conversion loop.
+
+       * mingwex/stdio/pformat.c (__pformat_emit_xfloat)
+       [value.__pformat_fpreg_mantissa == 0]: Do not attempt to normalize
+       it; there are no 1-bits to promote, so repeated shifting until one
+       appears in most significant position will never terminate.
+
+2016-10-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge mingwrt-3.22.4 updates into 5.0-active branch.
+
+       * configure.ac: Preserve original 5.0-active state.
+       * include/wchar.h: Update per 2016-10-17 commits.
+
+2016-10-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Prepare and tag mingwrt-3.22.4 patch release.
+
+       * configure.ac (AC_INIT): Increment patch level.
+
+2016-10-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Resolve an ANSI mode <string.h> vs. <wchar.h> conflict.
+
+       * include/wchar.h [!(_WCHAR_H && _STRING_H)]: Change condition...
+       [!(_WCHAR_H && (_STRING_H && !__STRICT_ANSI__))]: ...to this; the
+       guarded declarations are not exposed by including <string.h> when...
+       [__STRICT_ANSI__]: ...this is defined; hence, we must declare them
+       when including <wchar.h>, even after including <string.h>
+
+2016-10-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add dependency tracking for tests/Makefile.
+
+       * tests/Makefile.in (top_builddir): Define it.
+       (Makefile): Add automatic rebuild rule, tracking both srcdir and
+       top_builddir prerequisite changes.
+
+2016-10-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Correct a minor typographic error.
+
+       * tests/atlocal.in (autoconf_input): Replace invalid AC_SUBST tag...
+       (configure_input): ...with this correctly named alternative.
+
+2016-10-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge mingwrt-3.22.3 updates into 5.0-active branch.
+
+       * configure.ac: Preserve original 5.0-active state.
+       * include/_mingw.h.in include/string.h include/sys/types.h
+       * include/io.h: Update per 2016-10-13 commits.
+
+2016-10-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Prepare and tag mingwrt-3.22.3 patch release.
+
+       * configure.ac (AC_INIT): Increment patch level.
+
+2016-10-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Emulate glibc <string.h> POSIX.1 non-compliance.
+
+       * include/_mingw.h.in (_EMULATE_GLIBC): New feature test macro.
+       [_GNU_SOURCE || _BSD_SOURCE || !__STRICT_ANSI__]: Enable it when...
+       [_XOPEN_SOURCE || _POSIX_C_SOURCE || _POSIX_SOURCE]: ...none of
+       these have been pre-defined by the user.
+
+       * include/string.h [_EMULATE_GLIBC]: Include <strings.h> in full...
+       (strcasecmp, strncasecmp): ...so prototypes for these are declared.
+       [!_EMULATE_GLIBC]: Preserve partial <strings.h> include, guarded by...
+       [__STRING_H_SOURCED__]: ...this context selector, so suppressing the
+       declarations of those function prototypes.
+
+2016-10-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Resolve some non-ANSI typedef omissions.
+
+       * include/sys/types.h (off_t, ssize_t): Always typedef them when...
+       [_POSIX_C_SOURCE || !_NO_OLDNAMES]: ...either of these prevails.
+
+       * include/io.h (_fsize_t): Do not suppress its typedef when...
+       [__STRICT_ANSI__]: ...this compiler option applies, irrespective of...
+       [!(_IO_H && _WCHAR_H)]: ...this, which otherwise causes supression.
+
+2016-09-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Prepare and tag mingwrt-3.22.2 patch release.
+
+       * configure.ac (AC_INIT): Increment patch level.
+       * config.guess config.sub: Delete, per 2016-07-16 commit.
+       * include/stdlib.h: Backport, per 2016-09-14 commit.
+       * include/wchar.h: Backport, per 2016-09-17 commits.
+
+2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add missing <wchar.h> declarations when compiling C++.
+
+       * include/wchar.h (fwide, mbsinit, wmemset, wmemchr, wmemcpy)
+       (wmemmove, wcstoll, wcstoull): Declare each of these for either of...
+       [_ISOC99_SOURCE || __cplusplus]: ...these conditions, rather than...
+       [_ISOC99_SOURCE]: ...this alone.
+
+2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Stricter <wchar.h> ISO-C99 conformity filtering.
+
+       * include/wchar.h [__STRICT_ANSI__]: Do not include any part of...
+       (direct.h, io.h, sys/stat.h, locale.h, process.h): ...any of these.
+
+2016-09-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Relax strict ISO-C conformity to facilitate C99 support.
+
+       * include/stdlib.h (_atoi64, _exit) [__STRICT_ANSI__]: Convention
+       dictates that the Microsoft specific functions should not be declared;
+       however, C99 provides equivalents in atoll() and _Exit(), for which we
+       gratuituously use them to provide inline implementations; thus...
+       [_ISOC99_SOURCE && !__NO_INLINE__]: ...declare them anyway.
+
+2016-09-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Suppress expected header warnings when running testsuite.
+
+       * include/dir.h include/dos.h [__IN_MINGWRT_TESTSUITE__]: New feature
+       test; do not emit warning messages, which declare this pair of headers
+       to be obsolete.  These warnings are expected, but their format may not
+       be deterministically predictable; there is no reason to fail any test
+       on account of any such expected warning message.
+
+2016-09-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Create a preliminary autotest framework.
+
+       * configure.ac (AC_TESTDIR): Initialize tests subdirectory.
+       (AC_PROG_CXX): Identify C++ compiler; the testsuite will use it.
+       (AC_CHECK_PROG): Check availability of autom4te; specify fallback.
+       (AC_CONFIG_FILES): Add instantiation requests for tests/atlocal,
+       tests/Makefile, and tests/testsuite.at.tmp
+
+       * tests/testsuite.at.in tests/atlocal.in tests/headers.at
+       * tests/Makefile.in: New files; implement them.
+
+       * Makefile.in (check, check-recursive, tests): Implement new goals.
+       (mingwrt-srcdist-files): Subdivide package files complement into...
+       (mingwrt-srcdist-package-files): ...this original collection, and...
+       (mingwrt-srcdist-testsuite-files): ...this additional set.
+
+       * test_headers.c: Superseded by autotest; delete it.
+
+2016-08-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add pthreads-win32 courtesy support hooks.
+
+       * include/errno.h: Assert copyright; tidy layout.
+       (_ERRNO_H_): Rename this repeat inclusion guard macro as...
+       (_ERRNO_H): ...this, conforming to preferred naming convention.
+       [__PTW32_H]: Include "ptw32_errno.h".
+
+       * include/time.h [__SCHED_H_SOURCED__]
+       (struct timespec): Typedef it selectively; do not define...
+       (_TIME_H): ...this.
+
+2016-08-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement POSIX printf() feature per request [#2310].
+
+       * mingwex/stdio/pformat.c [WITH_XSI_FEATURES]: Delete references.
+       (PFORMAT_GROUPED): New manifest constant; define it.  It previously
+       appeared in an occluded XSI feature reference, but is now required.
+       (__pformat_t.tslen, __pformat_t.tschr, __pformat_t.grouping): New
+       structure member fields; they maintain control state as set up by...
+       (__pformat_enable_thousands_grouping): ...this new internal function.
+       (__pformat_int_bufsiz): Use it; it may request a size increment.
+       (__pformat_emit_digit, __pformat_emit_punct): New functions; they
+       handle output of digits, radix point, and thousands digits separator
+       punctuation for all numeric conversion formats, thus replacing...
+       (__pformat_emit_numeric_value, __pformat_emit_radix_point): ...these;
+       delete them, and update all callers to use appropriate replacements.
+       (__pformat_int) [PFORMAT_GROUPED]: Add and emit group separators.
+       (__pformat_xint_bufsiz): New internal function; it serves in place of
+       __pformat_int_bufsiz(), for those integer data conversion formats
+       which explicitly do not support thousands digits grouping, hence...
+       (__pformat_xint): ...use it, rather than __pformat_int_bufsiz().
+       (__pformat_adjust_for_grouping): New internal function; it adjusts the
+       __gdtoa radix point index for fixed point conversion formats, to allow
+       for the insertion of thousands digits group separators, hence...
+       (__pformat_emit_float): ...use it, and emit separators as appropriate.
+       (__pformat_emit_efloat) [PFORMAT_GROUPED]: Explicitly disable it.
+       (__pformat): Initialise stream references for __pformat_t.grouping,
+       __pformat_t.tslen, and _pformat_t.tschr, on entry; release any memory
+       allocated for __pformat_t.grouping, when done.
+
+2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Implement POSIX conforming getline() and getdelim() functions.
+
+       * mingwrt/mingwex/stdio/getdelim.c: New file.
+       * mingwrt/man/getline.3.man: Likewise.
+
+       * mingwrt/include/stdio.h [_POSIX_C_SOURCE >= 200809L]
+       (getdelim): New function, implemented externally; declare prototype.
+       (getline): New function; declare prototype; implement as __CRT_ALIAS
+       inline, with __LIBIMPL__ external representation.
+
+       * mingwrt/Makefile.in (libmingwex.a): Add getdelim.$OBJEXT
+       (mingwrt-man$man3ext): Add manpage dependency references to create...
+       (getline.$man3ext, getdelim.$man3ext): ...these; declare them as
+       distributable duplicates, to be generated from...
+       (getline.$man3ext.man): ...this common source.
+
+2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge mingwrt-3.22.1 legacy updates to 5.0-active branch.
+
+       * mingwex/math/powl.c: Update per issue [#2036] workaround.
+       * mingwex/stdio/pformat.c: Likewise, per issue [#2309] resolution,
+       and subsequent 2016-07-24 optimization.
+
+2016-07-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Prepare and tag all files for release of mingwrt-3.22.1.
+
+       * configure.ac (AC_INIT): Adjust package version number; append
+       patch level identification.
+
+2016-07-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Interim workaround for issue [#2306].
+
+       * mingwex/math/powl.c: Tidy layout; correct indentation.
+       (powl, reducl): Use ISO-C declaration syntax; K&R is obsolescent.
+       (powl) [OVERFLOW]: Correct representation of return value, using...
+       (INFINITYL): ...this manifest constant value, instead of...
+       (MAXNUML): ...this.
+
+2016-07-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Optimize printf() field width accumulation function.
+
+       * mingwex/stdio/pformat.c (__imul10plus): Omit multiply by ten on
+       already accumulated zero total; it is unnecessary, since ten times
+       zero is still zero.
+
+2016-07-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Fix printf() field width parsing regression issue [#2309].
+
+       * mingwex/stdio/pformat.c (__imul10plus): Coerce any accumulated
+       negative total to zero; the only negative value to be handled is...
+       (PFORMAT_IGNORE): ...this; it ceases to be applicable, on first call
+       to __imul10plus(), to accumulate field width or precision.
+
+2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Update install-sh to match mingw.org/build-aux package.
+
+       * install-sh: Delete it; use version in parent directory instead,
+       recreating local copy, (as symlink, if supported), on demand.
+
+2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Eliminate redundant configuration files.
+
+       * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
+       * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
+
+       * configure.ac (AC_PROG_LN_S): Add configuration check.
+
+2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge mingwrt-3.22 packaging correction to 5.0-active branch.
+
+2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Correct mingwrt-3.22 source package subdirectory omission.
+
+       * Makefile.in (mingwrt-srcdist-files): Add msvcrt-xref.
+
+2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Discard redundant config.guess and config.sub files.
+
+       * config.guess config.sub: Delete them; they are no longer required.
+
+2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Merge recent legacy branch updates to 5.0-active branch.
+
+       * Makefile.in include/ctype.h include/excpt.h include/stdint.h
+       * include/glob.h include/limits.h include/locale.h include/search.h
+       * include/stdio.h include/stdlib.h include/wchar.h include/wctype.h
+       * include/sys/param.h include/sys/stat.h mingwex/tdelete.c
+       * mingwex/tfind.c mingwex/tsearch.c mingwex/twalk.c: Updated.
+
+2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Prepare and tag all files for release of mingwrt-3.22.
+
+       * configure.ac (AC_INIT): Adjust package version number.
+
 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
        Preserve kludge to evade GCC build failure on S_ISBLK misuse.
 
 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
+       Synchronize package version management with Win32-API.
+
+       * VERSION.m4: New file; link it to keep in sync with identically named
+       file in top level composite package source directory; it defines...
+       (__VERSION__): ...this new composite package version macro.
+
+       * aclocal.m4: Link it, to keep in sync with identically named files in
+       top level composite source and sibling w32api sub-package directories.
+       (__VERSION__): New macro; include VERSION.m4 to define it.
+       (__BUG_REPORT_URL__): New macro; define it.
+
+       * configure.ac (AC_INIT): Assign package version and bug report URL...
+       (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
+       automatic inclusion of aclocal.m4
+
+       * Makefile.in (configure): Add dependency on VERSION.m4
+
+2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
        Resolve some strnlen() implementation issues.
 
        * mingwex/strnlen.s (__mingw_strnlen) [!NUL]: Correct termination
        [__need_ssize_t, __need_time_t]: Move corresponding #undef out of, and
        after the respective conditional blocks, which provide each associated
        typedef, so ensuring that any repeat request is properly reset.
-       
+
        * include/time.h [__need_time_t]: Always delegate to <sys/types.h> for
        typedef, and reset of request, even in cases where...
        [_TIME_H]: ...this is already defined.