aboutsummaryrefslogtreecommitdiff
path: root/patches (follow)
Commit message (Collapse)AuthorAgeFilesLines
* upstreamed ocsp_testBrent Cook2023-07-071-14/+0
|
* remove Windows lld workaroundBrent Cook2023-07-071-21/+0
|
* Land #886, add compat getopt implementationBrent Cook2023-07-072-36/+0
|\
| * add compat getopt implementation, remove patchesBrent Cook2023-07-072-36/+0
| | | | | | | | | | | | | | | | | | This adds a getopt implementation for compatibility where it is not available, removing a couple of regress patches. Note, this is a slightly modified copy from OpenBSD libc that doesn't expose getopt_long, which has dependency conflicts with Windows system headers and isn't needed anyway.
* | remove aeadtest patch upstreamedBrent Cook2023-07-071-15/+0
|/
* Remove patches merged into upstreamTheo Buehler2023-07-052-149/+0
|
* Add hidden/openssl/chacha.hTheo Buehler2023-07-051-0/+14
|
* Remove patch that was merged upstreamTheo Buehler2023-07-051-35/+0
|
* Remove patch that was merged into upstreamTheo Buehler2023-07-051-76/+0
|
* Regen patchesTheo Buehler2023-06-242-4/+4
|
* speed.c: move errstr out of #ifndefTheo Buehler2023-05-211-4/+3
|
* Regen speed.c diffTheo Buehler2023-05-211-18/+18
|
* regen tlsexttest.patchTheo Buehler2023-04-281-7/+7
|
* patching a non-existent file doesn't work so well...Theo Buehler2023-04-261-18/+0
|
* Remove OPENSSL_NO_DEPRECATED from e_old.cTheo Buehler2023-04-251-0/+18
|
* regen openssl patchTheo Buehler2023-04-251-3/+3
|
* regen tlsexttest.c patchTheo Buehler2023-04-251-7/+7
|
* Regen x509.h patchTheo Buehler2023-04-181-4/+4
|
* Fix build for MSVCBrent Cook2023-03-155-24/+192
|
* Adjust patch to recent speed.c changeTheo Buehler2023-02-281-1/+1
|
* stop exposing hidden defines in public opensslconf.hBrent Cook2023-02-282-0/+26
| | | | pull in hidden headers instead, patching drectly for Windows support
* disable BN asm for amd64 win32 buildBrent Cook2023-02-271-0/+21
|
* remove unused patchBrent Cook2023-02-211-11/+0
|
* generate opensslconf.h based on host cpu architectureBrent Cook2023-02-151-24/+0
|
* update bn_shift patchBrent Cook2023-02-131-5/+5
|
* refresh patchesTheo Buehler2023-02-132-19/+19
|
* Remove obsolete bn_div patchTheo Buehler2023-02-131-11/+0
|
* remove unneeded patchBrent Cook2023-01-041-11/+0
|
* Use bigger hammer to disable benchmarksTheo Buehler2022-12-181-17/+6
|
* Disable bn_shift benchmarks on WindowsTheo Buehler2022-12-181-0/+45
| | | | Windows doesn't know about SIGALRM
* Patch in use of BN_zero() until next syncTheo Buehler2022-12-181-0/+11
|
* regen bn_isqrt.c patchTheo Buehler2022-12-091-4/+4
|
* regen patchesTheo Buehler2022-11-272-7/+7
|
* Adjust patches for lcl.h -> local.h renameTheo Buehler2022-11-272-4/+4
|
* Don't leak namespace macros out of the libraryTheo Buehler2022-11-231-2/+2
|
* Neuter namespace differently to fix Appveyor CITheo Buehler2022-11-232-13/+24
|
* regen bio.h patchTheo Buehler2022-11-221-4/+4
|
* update speed.c.patchTheo Buehler2022-11-221-13/+13
|
* Regen tlsexttest.c patchTheo Buehler2022-11-081-6/+6
|
* Regen bio.h.patchTheo Buehler2022-09-061-7/+6
|
* Regen aeadtest.c.patchTheo Buehler2022-09-051-3/+3
|
* Regen tlsexttestc.c.patchTheo Buehler2022-09-051-4/+4
|
* Drop long long casts that are now upstreamTheo Buehler2022-09-051-34/+0
|
* fix corrupted patch on mergeBrent Cook2022-08-291-22/+0
|
* build updates for latest upstreamBrent Cook2022-08-291-0/+22
|
* MSC doesn't have getoptTheo Buehler2022-08-151-0/+18
|
* regen tlsextest patchTheo Buehler2022-08-151-8/+8
| | | | fixes #777
* Update ssl_txt.c patchTheo Buehler2022-06-221-6/+8
|
* Update netcat patchTheo Buehler2022-06-221-12/+12
| | | | Fixes #768
* Stop disabling __attribute__ on Windows with Clangkinichiro2022-04-291-1/+1
| | | | | | | | | On Windows with targeting the MSVC ABI, Clang will define _MSC_VER, and does not treat __attribute__ as a macro. Clang's builtin headers (e.g. immintrin.h) use __attribute__ liberally, and do not expect it to be ifdef-ed away. Suggested from Nicholas Hutchinson by github issue.