Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge remote-tracking branch 'origin/master' into cmake | Juergen Kahrs | 2013-05-16 | 11 | -23/+282 |
|\ | |||||
| * | Remove extension .la files after install. | Arnold D. Robbins | 2013-05-16 | 3 | -13/+30 |
| | | |||||
| * | Add AC_STRUCT_ST_BLKSIZE call in extension/configure.ac. | Arnold D. Robbins | 2013-05-16 | 4 | -0/+82 |
| | | |||||
| * | Add stat blocksize of 4096 for Windows. | Arnold D. Robbins | 2013-05-16 | 2 | -0/+7 |
| | | |||||
| * | Fix building, installing, and testing extensions on MS-Windows. | Eli Zaretskii | 2013-05-14 | 6 | -10/+163 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge remote-tracking branch 'origin/master' after release of Gawk 4.1.0 ↵ | Juergen Kahrs | 2013-05-10 | 5 | -11/+23 |
|\| | | | | | | | into cmake | ||||
| * | Gawk 4.1.0 release. | Arnold D. Robbins | 2013-05-10 | 5 | -11/+23 |
| | | |||||
| * | Update for next test tarball. | Arnold D. Robbins | 2013-05-02 | 2 | -11/+11 |
| | | |||||
* | | All SHLIB test cases are implemented now and pass on Linux. With MinGW only ↵ | Juergen Kahrs | 2013-05-04 | 1 | -1/+1 |
| | | | | | | | | 6 of them pass. | ||||
* | | Merge remote-tracking branch 'origin/master' into cmake | Juergen Kahrs | 2013-04-28 | 24 | -473/+578 |
|\| | | | | | | | | | Conflicts: README_d/ChangeLog | ||||
| * | Bump version for next tarball. | Arnold D. Robbins | 2013-04-27 | 2 | -11/+11 |
| | | |||||
| * | Update extension/build-aux/missing. | Arnold D. Robbins | 2013-04-22 | 2 | -260/+149 |
| | | |||||
| * | z/OS portability fix in extension/configure.ac. | Arnold D. Robbins | 2013-04-18 | 3 | -2/+4 |
| | | |||||
| * | Update copyright in extension/configure.ac. | Arnold D. Robbins | 2013-04-18 | 2 | -1/+5 |
| | | |||||
| * | Bump version and release beta tarball. | Arnold D. Robbins | 2013-04-18 | 2 | -11/+11 |
| | | |||||
| * | Fix extensions to link with LTLIBINTL. | Arnold D. Robbins | 2013-04-17 | 3 | -2/+7 |
| | | |||||
| * | Update to automake 1.13.1. | Arnold D. Robbins | 2013-04-16 | 4 | -184/+296 |
| | | |||||
| * | Update copyrights in all relevant source files. | Arnold D. Robbins | 2013-04-16 | 15 | -14/+21 |
| | | |||||
| * | More portability: mostly for SGI IRIX. | Arnold D. Robbins | 2013-03-24 | 2 | -1/+6 |
| | | |||||
| * | Further portability fixes in extensions, tests. | Arnold D. Robbins | 2013-03-20 | 2 | -0/+12 |
| | | |||||
| * | Additional fixes for MirBSD. Now passes make check. | Arnold D. Robbins | 2013-03-20 | 5 | -0/+38 |
| | | |||||
| * | Merge branch 'master' into porting | Arnold D. Robbins | 2013-03-04 | 2 | -1/+6 |
| |\ | |||||
| * | | Don't build the extensions if no API support. | Arnold D. Robbins | 2013-03-01 | 3 | -0/+31 |
| | | | |||||
* | | | Merge remote-tracking branch 'origin/master' into cmake | Juergen Kahrs | 2013-03-11 | 2 | -1/+6 |
|\ \ \ | | |/ | |/| | |||||
| * | | Minor bugfix in filefuncs.c for Win 32. | Arnold D. Robbins | 2013-03-04 | 2 | -1/+6 |
| |/ | |||||
* | | Some extension can now be built with MinGW. | Juergen Kahrs | 2013-02-20 | 1 | -8/+24 |
| | | |||||
* | | Moved all configuration stuff into cmake/configure.cmake so that config.h ↵ | Juergen Kahrs | 2013-02-17 | 1 | -10/+3 |
| | | | | | | | | contains all settings. All 265 basic test cases pass now with USE_CONFIG_H set to ON. | ||||
* | | Merge remote-tracking branch 'origin/master' into cmake | Juergen Kahrs | 2013-02-12 | 4 | -2/+63 |
|\| | |||||
| * | Add backup version of fnmatch.c. Fix fnmatch extension. | Arnold D. Robbins | 2013-02-11 | 2 | -1/+13 |
| | | |||||
| * | Fixes to extensions for Win 32. | Arnold D. Robbins | 2013-02-11 | 3 | -1/+50 |
| | | |||||
* | | Packaging a minimal .tar.gz file with the gawk executable and all binary ↵ | Juergen Kahrs | 2013-02-10 | 1 | -39/+19 |
| | | | | | | | | extension library files. | ||||
* | | Extension are compiled now as MODULE without the 'lib' prefix. This is ↵ | Juergen Kahrs | 2013-02-10 | 1 | -12/+30 |
| | | | | | | | | necessary to make them compatible with the existing libtool naming scheme. All test cases involving extensions pass now. | ||||
* | | Made building of extensions a bit more robust. | Juergen Kahrs | 2013-02-10 | 1 | -7/+20 |
| | | |||||
* | | All extensions can be built as shared libraries now. It was necessary to ↵ | Juergen Kahrs | 2013-02-09 | 1 | -0/+67 |
|/ | | | | remove -DGAWK when building the extensions. The test cases involving extensions still fail. | ||||
* | Fix gawkdirfd.h for Mac OS X. | Arnold D. Robbins | 2013-01-27 | 2 | -1/+2 |
| | |||||
* | More portability work: dirfd in extensions. | Arnold D. Robbins | 2013-01-27 | 12 | -1533/+1954 |
| | |||||
* | Considerable additional portability fixes. | Arnold D. Robbins | 2013-01-25 | 2 | -1/+5 |
| | |||||
* | More portability. | Arnold D. Robbins | 2013-01-22 | 6 | -2/+21 |
| | |||||
* | Improve portability. | Arnold D. Robbins | 2013-01-22 | 3 | -0/+13 |
| | |||||
* | Fix some problems from warning tools, etc. | Arnold D. Robbins | 2013-01-18 | 3 | -1/+11 |
| | |||||
* | Remove an unused variable. | Arnold D. Robbins | 2013-01-15 | 2 | -1/+2 |
| | |||||
* | Add man page for inplace extension. Update others. | Arnold D. Robbins | 2013-01-15 | 12 | -21/+130 |
| | |||||
* | Add tests for inplace extension. | Andrew J. Schorr | 2013-01-10 | 2 | -3/+10 |
| | |||||
* | Add inplace file editing extension. | Andrew J. Schorr | 2013-01-08 | 4 | -8/+272 |
| | |||||
* | Move old extension stuff into a separate directory. | Arnold D. Robbins | 2013-01-06 | 11 | -1890/+0 |
| | |||||
* | Merge branch 'gawk-4.0-stable'. | Arnold D. Robbins | 2012-12-25 | 1 | -1/+1 |
|\ | |||||
| * | Rebuild 4.0.2 tarball. | Arnold D. Robbins | 2012-12-25 | 1 | -1/+1 |
| | | |||||
* | | Remove sym_constant() API and tests. | Arnold D. Robbins | 2012-12-25 | 6 | -10/+29 |
| | | |||||
* | | Merge branch 'gawk-4.0-stable' | Arnold D. Robbins | 2012-12-23 | 1 | -0/+4 |
|\| | |||||
| * | Make the 4.0.2 tarballs. | Arnold D. Robbins | 2012-12-23 | 1 | -0/+4 |
| | |