aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* re-add headers for distributionBrent Cook2018-03-141-0/+2
|
* syntax updatesBrent Cook2018-03-141-4/+3
|
* prefer including windows.h over the internal headerBrent Cook2018-03-141-1/+1
|
* add pthread_once(3) implementation for WindowsBrent Cook2018-03-141-0/+43
|
* bump base requirement to Windows Vista, use builtin inet_ntop/ptonBrent Cook2018-03-1411-46/+3
|
* Add regress keypairtestkinichiro2018-03-133-0/+23
|
* Add libpthread for libtls buildkinichiro2018-03-132-0/+2
|
* update manpage linksBrent Cook2018-02-281-0/+2
|
* Add bio_meth.ckinichiro2018-02-262-0/+2
|
* Add compat bits for libtls on Windowskinichiro2018-02-258-0/+110
|
* Land #386, Add tls_keypairBrent Cook2018-02-114-0/+15
|\
| * Add file permission define for Windows and MinGW buildkinichiro2018-02-112-0/+13
| |
| * Add tls/tls_keypair.ckinichiro2018-02-112-0/+2
| |
* | Land #383, use https for urlsBrent Cook2018-02-111-5/+5
|\ \
| * | change the URLs accessible by HTTPS to HTTPScatatsuy2018-01-211-5/+5
| |/
* / Remove 64bit build designation on Solariskinichiro2018-01-112-2/+1
|/ | | | | | - Revert commit https://github.com/libressl-portable/portable/pull/327/commits/c18852f650a3cb258e10222695a31ed5c929ab23 - Remove -m64 from CMakeLists.txt by commit https://github.com/libressl-portable/portable/commit/08089a1b20a1818538670d641242266ed3185814 - Suggested by @andy-js in conversation https://github.com/libressl-portable/portable/pull/327
* Land #376, adjust MSVC warningsBrent Cook2018-01-071-18/+15
|\
| * Reconsider MSVC warning listkinichiro2018-01-061-18/+15
| | | | | | | | | | | | - Remove C4242 and C4820 - Warning explanation from manual - Sort by warning code
* | Land #374, hp-ux compatibilityBrent Cook2018-01-071-3/+73
|\ \ | | | | | | | | | Merge remote-tracking branch 'upstream/pr/374'
| * | 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.
* | Land #375, adjust va_end calls to match scopeBrent Cook2018-01-071-4/+4
|\ \
| * | Call va_end soon after using variable length variablekinichiro2018-01-061-4/+4
| |/ | | | | | | - This fix MSVC compiler warning C4702 "unreachable code".
* / Remove unneeded -ULIBRESSL_INTERNALkinichiro2018-01-061-2/+0
|/
* Land #373, add app_timer_user for WindowsBrent Cook2017-12-281-7/+5
|\
| * Add app_timer_user for Windows buildkinichiro2017-12-261-7/+5
| |
* | Land #372, Add CLOCK_MONOTONIC and timersub compatibility stubsBrent Cook2017-12-281-0/+16
|\ \
| * | Add CLOCK_MONOTONIC and timersub for the OS that does not have themkinichiro2017-12-251-0/+16
| |/
* | Add regress configtestkinichiro2017-12-222-0/+10
| |
* | Add regress asn1evpkinichiro2017-12-223-0/+11
|/
* add timerspecsubBrent Cook2017-12-121-0/+12
|
* update for 2.7.0Brent Cook2017-12-111-0/+11
|
* update linksBrent Cook2017-12-111-0/+1
|
* add release notesBrent Cook2017-12-111-0/+15
|
* 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>
* Fixed getpagesize detection on AndroidEvgen Bodunov2017-11-231-1/+14
|
* Land #359, create correct certs dir with CMake installBrent Cook2017-11-231-1/+1
|\
| * Create correct directory in CMake install.Aric Belsito2017-11-061-1/+1
| | | | | | | | Was creating ${CONFDIR}/cert instead of ${CONFDIR}/certs.
* | fetch before update to grab new branchesBrent Cook2017-11-051-0/+1
|/
* update changelogBrent Cook2017-11-051-0/+6
|
* Separate man(5) pagesBernard Spil2017-10-221-5/+12
|
* Land #355, update libc checksBrent Cook2017-09-261-1/+1
|\
| * Fix checking memmem in apps/ocspcheck/CMakeLists.txtkinichiro2017-09-261-1/+1
| | | | | | | | - Issue #352 pointed out by @d3x0r
* | update release notesv2.6.2Brent Cook2017-09-251-0/+22
|/
* Land #348, include .5 manpagesBrent Cook2017-09-175-4/+6
|\
| * Add *.5 manpages in libcrypto/man/kinichiro2017-09-105-4/+6
| |
* | Some CMake Fixes.Aric Belsito2017-09-102-0/+18
|/ | | | | pqueue.h was getting installed when it shouldn't. pkgconfig files were not getting installed or generated.
* spellingBrent Cook2017-09-061-1/+1
|
* update VS prerequisites, refer to autogen.sh morev2.6.1Brent Cook2017-09-041-7/+10
|
* Land #344, fix regress tlxexttest for certain C compilersBrent Cook2017-09-041-0/+41
|\
| * 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.