aboutsummaryrefslogtreecommitdiffstats
path: root/README_d/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Major improvements to test infrastructure.Arnold D. Robbins2018-05-131-0/+5
|
* Make 4.2.1 tarball.Arnold D. Robbins2018-02-251-0/+4
|
* Restore PowerPC mac to not build MPFR.Arnold D. Robbins2018-02-231-0/+4
|
* Restore MPFR compilation on PowerPC Macintosh.Arnold D. Robbins2018-02-211-0/+4
|
* Update README.macosx.Arnold D. Robbins2018-02-041-0/+4
|
* More doc updates.Arnold D. Robbins2018-01-251-0/+4
|
* Small fix in ChangeLog. Update README.mpfr.Arnold D. Robbins2017-11-151-0/+5
|
* Support building with MPFR in the DJGPP port.Juan Manuel Guerrero2017-11-141-0/+4
|
* Update README.os2.Arnold D. Robbins2017-10-211-0/+4
|
* Make 4.2.0 tarball.Arnold D. Robbins2017-10-191-0/+4
|
* Added README.rpm file.Arnold D. Robbins2017-10-101-0/+4
|
* Update README.ps wrt building extensions.Eli Zaretskii2017-09-041-0/+5
|
* Update README_d/README.pc with new DJGPP maintainer.Arnold D. Robbins2017-08-241-0/+5
|
* New README.alpine file.Arnold D. Robbins2017-08-231-0/+4
|
* Add README_d/README.freebsd.Arnold D. Robbins2017-08-131-0/+4
|
* Update for Mac OS X on PowerPC.Arnold D. Robbins2016-12-231-0/+4
|
* Merge branch 'gawk-4.1-stable'Arnold D. Robbins2016-10-311-0/+5
|\
| * Add README.aix. Typo fix in README.zLinux.Arnold D. Robbins2016-10-311-0/+5
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2016-08-251-0/+4
|\|
| * Make 4.1.4 release tar ball.Arnold D. Robbins2016-08-251-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2016-08-241-0/+4
|\|
| * Update README.macosx file.Arnold D. Robbins2016-08-241-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2016-01-251-0/+4
|\|
| * Add README_d/README.zLinux.Arnold D. Robbins2016-01-251-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-05-191-0/+4
|\|
| * Changes for 4.1.3 release.Arnold D. Robbins2015-05-191-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-04-291-0/+4
|\|
| * Make 4.1.2 release.Arnold D. Robbins2015-04-291-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-04-131-0/+4
|\|
| * Update in README_d/README.macosx.Arnold D. Robbins2015-04-131-0/+4
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-04-091-0/+4
|\|
| * Add README_d/README.macosx.Arnold D. Robbins2015-04-091-0/+4
| |
* | Copyright updates and file move.Juergen Kahrs2014-08-121-0/+4
|/
* Make release tar ball.Arnold D. Robbins2014-04-081-0/+4
|
* README_d/README.gcc-3 file added.Arnold D. Robbins2014-04-021-0/+4
|
* Update README.solaris.Arnold D. Robbins2014-01-221-0/+4
|
* VMS doc updates.Arnold D. Robbins2014-01-131-0/+4
|
* Build and test dynamic extensions on VMS. Documented too.Arnold D. Robbins2013-12-301-3/+8
|
* More doc updates, fix initialization on VAX/VMS.Arnold D. Robbins2013-12-231-3/+3
|
* Add exact case build support and doc fixes for VMS.Arnold D. Robbins2013-12-211-0/+4
|
* Further updates, mainly doc.Arnold D. Robbins2013-12-161-1/+6
|
* First round of VMS changes.Arnold D. Robbins2013-12-121-0/+3
|
* Update in README_d/README.pc.Arnold D. Robbins2013-07-021-0/+4
|
* Fix building, installing, and testing extensions on MS-Windows.Eli Zaretskii2013-05-141-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test/Makefile.in (mpfr-tests, shlib-tests): Add a blank character between ' and /FOO/ in Gawk command lines, for the benefit of testing under MSYS Bash. test/filefuncs.awk (BEGIN): Call 'stat' on gawkapi.o, not on gawk, which does not exist on systems that produce gawk.exe. README_D/README.pc: Update the pc build and test instructions. pc/Makefile.tst (AWK): Set AWKLIBPATH so extensions could be found. (LS): New variable. (check): Add back shlib-tests and shlib-msg-end. (readdir): Add a warning regarding inode reporting by ls.exe. (fts, fork, fork2): Add message about expected failure on MinGW. pc/Makefile (install): Install the extensions. (install-strip): Likewise. pc/Makefile.ext: New file. io.c (devopen) [__EMX__ || __MINGW32__]: Produce EISDIR on MinGW when an attempt to open() a directory fails. (two_way_open) [__EMX__ || __MINGW32__]: When trying to open() a directory fails with EISDIR, assign FAKE_FD_VALUE to the file descriptor and attributes of a directory to its mode bits. This is needed to support the readdir extension. gawkapi.h (FAKE_FD_VALUE): New macro, used in io.h and in extension/gawkdirfd.h. extension/rwarray.c [__MINGW32__]: Include winsock2.h instead of arpa/inet.h. extension/readdir.c [__MINGW32__]: Include windows.h. Include gawkapi.h before gawkdirfd.h, since the former defines FAKE_FD_VALUE needed by the latter. (ftype): Accept an additional argument, the directory that is being read. Callers changed. [!DT_BLK]: Produce the file's type by calling 'stat' on it, if the dirent structure doesn't provide that. (get_inode): New function, to produce inode values on MS-Windows. (dir_get_record): Use it. extension/inplace.c (chown, link) [__MINGW32__]: Redirect to existing library functions. (mkstemp) [__MINGW32__]: New function, for MinGW, which doesn't have it in its library. (do_inplace_end) [__MINGW32__]: Remove the old file before renaming the new, since 'rename' on Windows cannot overwrite existing files. extension/gawkdirfd.h (ENOTSUP): Define to ENOSYS if not already defined. (DIR_TO_FD): If not defined yet, define to FAKE_FD_VALUE. extension/filefuncs.c (get_inode) [_WIN32]: New function, produces the file index used on Windows as its inode. (fill_stat_array) [_WIN32]: Use it.
* Gawk 4.1.0 release.Arnold D. Robbins2013-05-101-0/+4
|
* Update various README_d/* files.Arnold D. Robbins2013-04-161-0/+4
|
* Merge branch 'gawk-4.0-stable'.Arnold D. Robbins2012-12-251-1/+1
|\
| * Rebuild 4.0.2 tarball.Arnold D. Robbins2012-12-251-1/+1
| |
* | Merge branch 'gawk-4.0-stable'Arnold D. Robbins2012-12-231-0/+4
|\|
| * Make the 4.0.2 tarballs.Arnold D. Robbins2012-12-231-0/+4
| |