aboutsummaryrefslogtreecommitdiff
path: root/patches (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rebase netcat.c.patchBrent Cook2018-11-161-24/+24
|
* Rediffed patches for merge fuzzBrent Cook2018-11-075-40/+38
|
* Misc fixes to bring portable in line with upstream.bobsayshilol2018-11-077-60/+26
|
* Suppress "overriding WinCrypt defines" warningsNobuyoshi Nakada2018-07-291-1/+1
| | | | | Suppress "overriding WinCrypt defines" from openssl/x509.h by defining `NOCRYPT`. Only this file does not check `__WINCRYPT_H__` macro like other headers, since https://github.com/libressl-portable/portable/commit/5d8a1cf7155130bd8101090d7e1d0c2f90d9b123#diff-74b6370bc092dd2988ab577b2eaa21dcR7
* Fix using right functions for file descriptor with MS Visual Studiokinichiro2018-03-183-0/+39
|
* Modify regress tests/tlsexttest.c for 0 sized arraykinichiro2017-12-301-3/+73
| | | | - Windows and hp-ux ANSI compiler can not handle 0 sized array initialization.
* netcat.c.patch: eliminate syntax error from patchKyle J. McKay2017-12-051-1/+1
| | | | | | | | | | | | | If the target system does not define IPV6_TCLASS, this part of the patch handles that with an ENOPROTOOPT error rather than failing to compile. Unfortunately it's missing a trailing semicolon leading to a compilation error. Add the missing semicolon to fix the problem. Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
* Add patch for regress tlsexttestkinichiro2017-09-031-0/+41
| | | | | | Some compiler does not support 0 sized array. This patch changes 0 sized array to have NULL and using variable instead of sizeof function.
* rebase patches on latest, remove fuzzBrent Cook2017-07-173-29/+28
|
* update netcat patchkinichiro2017-07-071-19/+19
|
* update nc patchBrent Cook2017-06-031-22/+30
|
* defining DEFAULT_CA_FILE only if it is not defined.kinichiro2017-06-041-0/+12
| | | | indicated by Kyle J. McKay mackyle@gmail.com
* rebase netcat patchBrent Cook2017-03-251-15/+15
|
* Add definition of ssize_t to tls.h for Windowskinichiro2017-02-131-0/+32
|
* Fix patch for netcat.ckinichiro2017-02-071-22/+22
|
* use __MINGW_PRINTF_FORMAT for BIO_* print functions if availableBrent Cook2016-11-061-0/+36
|
* update patchesBrent Cook2016-11-062-19/+19
|
* update windows header patchesBrent Cook2016-11-041-3/+3
|
* set correct DEFAULT_CA_FILE pathBrent Cook2016-10-301-14/+24
|
* Enable tests on Visual Studiokinichiro2016-10-302-0/+29
| | | | | | | | | | | - add patch for aeadtest.c to undef IN - add patch for ocsp_test.c to call BIO_sock_init() before getaddrinfo() - define STDERR_FILENO in unistd.h to build pkcs7test.c - add option ENABLE_VSTEST(default OFF) to enable test on Visual Studio - modify to pass test data file as an argument (aeadtest, evptest) - add Windows scripts (ocsptest, pq_test, ssltest, testdsa, testenc, testrsa) - do not build pidwraptest on MSVC - fix some indentations
* rebase nc(1) patchBrent Cook2016-09-041-20/+20
|
* remove DEFAULT_CA_FILE patch, since libtls handles this by defaultBrent Cook2016-08-131-36/+14
|
* avoid BSWAP assembly for ARM <= v6Brent Cook2016-07-171-0/+21
|
* format 64-bit int portably (windows wants %l64d)Brent Cook2016-07-171-0/+19
|
* Revert "remove DEFAULT_CA_FILE patch, since libtls handles this by default"Brent Cook2016-07-091-14/+36
| | | | This reverts commit 30adf9c06e8d3d7ac9e89f4b2b290567bcafa75c.
* remove DEFAULT_CA_FILE patch, since libtls handles this by defaultBrent Cook2016-07-071-36/+14
|
* update for netcat changesBrent Cook2016-06-301-75/+15
|
* refine netcat patchBrent Cook2016-06-301-36/+29
|
* update netcat patchBrent Cook2016-06-301-17/+92
|
* rebase netcat patchBrent Cook2016-05-301-9/+9
|
* rebase netcat patchBrent Cook2015-12-281-13/+13
|
* rebase windows headers patchBrent Cook2015-12-071-16/+16
|
* fixup cert.pem path override for libtls, add for nc(1)Brent Cook2015-12-071-19/+42
| | | | this also fixes the formatting of help for nc(1)
* refresh nc(1) supportBrent Cook2015-12-061-14/+14
|
* override _PATH_SSL_CA_FILE with OPENSSLDIR at build timeBrent Cook2015-12-061-0/+12
| | | | fix #160
* update netcat patchBrent Cook2015-11-221-37/+14
|
* update patchesBrent Cook2015-11-022-16/+16
|
* update netcat patchBrent Cook2015-10-231-8/+27
|
* disable some tests with 32-bit time_t systemsBrent Cook2015-10-171-0/+82
| | | | Also disable use of _mkgmtime, it does not produce correct results.
* update netcat.c.patch for osx 10.6 or earlierGoichi Hirakawa2015-10-141-12/+23
|
* revise how headers are patched for windows, remove sed scriptsBrent Cook2015-09-215-81/+100
|
* fix a library paths, nc patchBrent Cook2015-09-131-2/+2
|
* a few more linux nc build tweaksBrent Cook2015-09-131-4/+16
|
* fixup windows and older linux buildsBrent Cook2015-09-131-4/+10
|
* allow nc to build on linux and os xBrent Cook2015-09-131-0/+137
|
* move windows file IO mode setup to apps_win.cBrent Cook2015-09-131-33/+5
|
* add 'nc' to the distribution as an example of libtls client and serverBrent Cook2015-09-121-2/+2
|
* remove unneeded arc4random patchBrent Cook2015-09-111-15/+0
|
* add initial CMake and Visual Studio build supportBrent Cook2015-07-216-12/+57
| | | | | | | | This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore.
* patch headers to avoid redefinitions on windowsScott Parker2015-07-163-0/+62
|