aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* add install_sw alias for latest nginxBrent Cook2016-03-121-0/+3
| | | | fixes #174
* update man linksBrent Cook2016-02-291-108/+24
|
* add things to minimize diffs with OpenNTPD-portableBrent Cook2016-02-152-19/+17
|
* updated changelogv2.3.2Brent Cook2016-01-271-2/+13
|
* add solaris include for getentropy(2)Brent Cook2016-01-181-0/+7
|
* package pidwraptest.sh scriptBrent Cook2016-01-031-1/+1
|
* whitelist NetBSD 7.0 native arc4random(3) implementation.Brent Cook2016-01-032-3/+17
| | | | | NetBSD 7 improves arc4random(3) over earlier versions by adding fork detection, stronger assertions on seed failure.
* enable nc on AIXBrent Cook2016-01-031-0/+1
|
* replace err.h macros with inline functionsBrent Cook2016-01-031-8/+54
| | | | Passing NULL for the format is just easier with a function.
* prefer gnu patch on AIXBrent Cook2016-01-031-1/+6
|
* include strings.h in string.h on AIX as wellBrent Cook2016-01-032-4/+6
|
* -path isn't really needed for perms fixup, and not supported everywhereBrent Cook2016-01-031-1/+1
|
* rebase netcat patchBrent Cook2015-12-281-13/+13
|
* add upstream config.guess/config.subBrent Cook2015-12-273-0/+3264
| | | | | This adds refreshed OS and CPU detection. https://www.gnu.org/software/gettext/manual/html_node/config_002eguess.html
* update check for b64_ntopBrent Cook2015-12-271-1/+1
| | | | typo spotted by Jonas 'Sortie' Termansen
* note the removed Verisign certificateBrent Cook2015-12-151-0/+4
|
* update added certsBrent Cook2015-12-141-1/+2
|
* Revert back to GetStdHandle, since it works fine with pipes.Brent Cook2015-12-111-6/+6
| | | | | Also include the formerly-missing NULL check, since this can fail in two ways.
* include stdint.h uint*_tBrent Cook2015-12-111-0/+1
|
* Replace STDIN_FILENO with _filenoAnthony Novatsis2015-12-111-3/+3
| | | | | Replace STDIN_FILENO with _fileno as STDIN_FILENO results in compile errors with Visual Studio 2015 (using CMake).
* installing nc(1) should imply building, even if not whitelistedBrent Cook2015-12-072-5/+5
|
* allow optionally installing nc(1) with '--enable-nc'Brent Cook2015-12-072-0/+8
|
* rebase windows headers patchBrent Cook2015-12-071-16/+16
|
* fixup cert.pem path override for libtls, add for nc(1)Brent Cook2015-12-073-21/+49
| | | | this also fixes the formatting of help for nc(1)
* refresh nc(1) supportBrent Cook2015-12-064-14/+17
|
* override _PATH_SSL_CA_FILE with OPENSSLDIR at build timeBrent Cook2015-12-062-0/+19
| | | | fix #160
* update changelogBrent Cook2015-12-061-0/+2
|
* only set the console mode if stdin is a console (not a pipe)Brent Cook2015-12-061-9/+21
| | | | This allows piping commands and running from a cygwin console.
* wrap gets on Windows, replacing '\r\n' with '\n'Brent Cook2015-12-052-0/+16
|
* Update 2.3.2 release notesBrent Cook2015-12-051-0/+34
|
* no special workaround needed for MSVC2015Brent Cook2015-12-021-4/+0
|
* fix libtls-standalone tests for tls_read and tls_write changed apiZhicheng Wei2015-11-231-3/+3
|
* build nc on solaris and cygwinBrent Cook2015-11-231-0/+2
|
* ensure we don't pass a negative int to ctypes functionsBrent Cook2015-11-231-3/+3
| | | | | Some implementations, e.g. cygwin, use a table lookup that can cast a char to a negative array offset.
* do not link libcompatnoopt if it is unneeded/builtBrent Cook2015-11-221-3/+8
| | | | from andy-js on github, fix #158
* omit <type> linksBrent Cook2015-11-222-9/+1
|
* update manpage linksBrent Cook2015-11-221-16/+114
|
* update netcat patchBrent Cook2015-11-221-37/+14
|
* update patchesBrent Cook2015-11-022-16/+16
|
* update changelog for 2.3.1v2.3.1Brent Cook2015-10-261-0/+32
|
* whitelist nc on other BSDsBrent Cook2015-10-231-0/+2
|
* update netcat patchBrent Cook2015-10-231-8/+27
|
* remove a_gen/utctm.c for cmakeBrent Cook2015-10-211-2/+0
|
* check bounds before casting (long long) to time_tBrent Cook2015-10-211-0/+6
|
* remove a_gen/utctm.cBrent Cook2015-10-211-2/+0
|
* move rfc5280time to rfc5280time_smallBrent Cook2015-10-182-2/+2
| | | | | Having the same name as the executable confuses the driver, and it runs the wrong thing.
* include tap-driver.sh in the source repoBrent Cook2015-10-182-1/+651
| | | | Newer autotools appears to install it automatically, but not all do.
* update apps.h includeBrent Cook2015-10-181-1/+1
|
* make it clear that we skipped 64-bit time_t testsBrent Cook2015-10-184-9/+26
|
* Windows compatibility fixesBrent Cook2015-10-189-11/+32
| | | | | | | | | | | VS2013 has trouble with relative include paths for apps/openssl, so move certhash_win/apps_win.c back to apps/openssl. gmtime_r on mingw64 fails with negative time_t, override gmtime_s fails all of the time unit tests, override SHUT_RD/WR are defined in newer mingw64 headers, check before overriding