Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update release notesv2.6.5OPENBSD_6_2 | Brent Cook | 2018-06-13 | 1 | -0/+13 |
| | |||||
* | Call va_end soon after using variable length variable | kinichiro | 2018-01-07 | 1 | -4/+4 |
| | | | | - This fix MSVC compiler warning C4702 "unreachable code". | ||||
* | Reconsider MSVC warning list | kinichiro | 2018-01-07 | 1 | -18/+15 |
| | | | | | | - Remove C4242 and C4820 - Warning explanation from manual - Sort by warning code | ||||
* | Remove unneeded -ULIBRESSL_INTERNAL | kinichiro | 2018-01-07 | 1 | -2/+0 |
| | |||||
* | add release notesv2.6.4 | Brent Cook | 2017-12-11 | 1 | -0/+15 |
| | |||||
* | netcat.c.patch: eliminate syntax error from patch | Kyle J. McKay | 2017-12-11 | 1 | -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> | ||||
* | Fixed getpagesize detection on Android | Evgen Bodunov | 2017-11-23 | 1 | -1/+14 |
| | |||||
* | Create correct directory in CMake install. | Aric Belsito | 2017-11-23 | 1 | -1/+1 |
| | | | | Was creating ${CONFDIR}/cert instead of ${CONFDIR}/certs. | ||||
* | fetch before update to grab new branches | Brent Cook | 2017-11-05 | 1 | -0/+1 |
| | |||||
* | update changelogv2.6.3 | Brent Cook | 2017-11-05 | 1 | -0/+6 |
| | |||||
* | make OPENBSD_6_2 branch | Brent Cook | 2017-11-02 | 1 | -1/+1 |
| | |||||
* | Separate man(5) pages | Bernard Spil | 2017-10-22 | 1 | -5/+12 |
| | |||||
* | Land #355, update libc checks | Brent Cook | 2017-09-26 | 1 | -1/+1 |
|\ | |||||
| * | Fix checking memmem in apps/ocspcheck/CMakeLists.txt | kinichiro | 2017-09-26 | 1 | -1/+1 |
| | | | | | | | | - Issue #352 pointed out by @d3x0r | ||||
* | | update release notesv2.6.2 | Brent Cook | 2017-09-25 | 1 | -0/+22 |
|/ | |||||
* | Land #348, include .5 manpages | Brent Cook | 2017-09-17 | 5 | -4/+6 |
|\ | |||||
| * | Add *.5 manpages in libcrypto/man/ | kinichiro | 2017-09-10 | 5 | -4/+6 |
| | | |||||
* | | Some CMake Fixes. | Aric Belsito | 2017-09-10 | 2 | -0/+18 |
|/ | | | | | pqueue.h was getting installed when it shouldn't. pkgconfig files were not getting installed or generated. | ||||
* | spelling | Brent Cook | 2017-09-06 | 1 | -1/+1 |
| | |||||
* | update VS prerequisites, refer to autogen.sh morev2.6.1 | Brent Cook | 2017-09-04 | 1 | -7/+10 |
| | |||||
* | Land #344, fix regress tlxexttest for certain C compilers | Brent Cook | 2017-09-04 | 1 | -0/+41 |
|\ | |||||
| * | Add patch for regress tlsexttest | kinichiro | 2017-09-03 | 1 | -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. | ||||
* | | be more concise, formatting | Brent Cook | 2017-09-04 | 1 | -3/+1 |
| | | |||||
* | | update changes | Brent Cook | 2017-09-04 | 1 | -3/+3 |
| | | |||||
* | | enhance README warnings, remove pod2man requirement | Brent Cook | 2017-09-04 | 1 | -9/+14 |
| | | |||||
* | | update manpage links | Brent Cook | 2017-09-03 | 1 | -13/+39 |
| | | |||||
* | | add 2.6.1 changelog | Brent Cook | 2017-09-03 | 1 | -0/+53 |
|/ | |||||
* | Remove rsa/rsa_ssl.c | kinichiro | 2017-09-01 | 2 | -2/+0 |
| | |||||
* | set SMALL_TIME_T when sizeof time_t == 4 | Brent Cook | 2017-08-14 | 2 | -0/+2 |
| | |||||
* | use standard initialization for poll loop delay | Brent Cook | 2017-08-13 | 1 | -1/+3 |
| | |||||
* | declare struct timezone outside of the function declaration | Brent Cook | 2017-08-13 | 1 | -0/+1 |
| | |||||
* | disable signed/unsigned mismatch in vs builds | Brent Cook | 2017-08-13 | 1 | -0/+6 |
| | |||||
* | Land #338, disable NPN tests | Brent Cook | 2017-08-13 | 1 | -12/+0 |
|\ | |||||
| * | Remove NPN test coverage for Windows. | kinichiro | 2017-08-13 | 1 | -12/+0 |
| | | |||||
* | | bump to latest version of tap driver | Brent Cook | 2017-08-13 | 1 | -2/+2 |
| | | |||||
* | | don't build empty object files | Brent Cook | 2017-08-12 | 2 | -8/+0 |
|/ | |||||
* | Land #332, fix shared library dependencies with cmake for libssl/libtls | Brent Cook | 2017-08-12 | 2 | -2/+4 |
|\ | |||||
| * | ssl/tls cmake: fix shared library dependencies | Masud Rahman | 2017-07-24 | 2 | -2/+4 |
| | | | | | | | | | | | | Ensure that the 'ssl' depends on 'crypto' and that 'tls' depends on 'ssl' and 'crypto' for all platforms. Prior to this commit, the dependency was only specified for the 'WIN32' CMake build. | ||||
* | | Remove ssl/t1_reneg.c | kinichiro | 2017-08-12 | 2 | -2/+0 |
|/ | |||||
* | rebase patches on latest, remove fuzz | Brent Cook | 2017-07-17 | 3 | -29/+28 |
| | |||||
* | update manpage links | Brent Cook | 2017-07-17 | 1 | -2/+59 |
| | |||||
* | add tlsext | Brent Cook | 2017-07-17 | 4 | -0/+14 |
| | |||||
* | Land #329, modify symbol exports for Darwin with cmake builds | Brent Cook | 2017-07-17 | 1 | -1/+7 |
|\ | |||||
| * | cmake_export_symbol: Darwin compatibility | Masud Rahman | 2017-06-25 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | The Darwin platform prefixes all C symbols with an underscore. At link-time of a shared library, libressl generates a list of symbols to export, but does not prefix each symbol with an underscore. This commit addresses that issue. | ||||
* | | Land #331, add prototype definitions of asprintf and vasprintf for CYGWIN build | Brent Cook | 2017-07-17 | 1 | -0/+1 |
|\ \ | |||||
| * | | add prototype definitions of asprintf and vasprintf for CYGWIN build | kinichiro | 2017-07-16 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | - define _GNU_SOURCE in case of cygwin As compilation warning report by @Dravion | ||||
* | | | Add regression test freenull | kinichiro | 2017-07-16 | 3 | -0/+12 |
|/ / | |||||
* | | changelog corrections | Brent Cook | 2017-07-12 | 1 | -7/+4 |
| | | |||||
* | | remove duplcate changelog entryv2.6.0 | Brent Cook | 2017-07-09 | 1 | -6/+0 |
| | | |||||
* | | added 2.6.0 Changes | Brent Cook | 2017-07-09 | 1 | -0/+61 |
| | |