kc3-lang/libressl

Branch :


Log

Author Commit Date CI Message
3cb1ac9e 2023-12-19 17:21:24 ci: clean up windows workflow
74ef8629 2023-12-15 17:04:56 Add Solaris workflow badge to readme
d8ade653 2023-12-15 16:25:26 ci: fix apt commands in solaris workflow
7ca25961 2023-12-14 13:43:04 cmake: limit some macros to mingw Syncing this up with autotools. Also use the built-in `MINGW` variable.
b85c9dac 2023-12-11 16:21:30 cmake: auto-detect `strtonum` Notice that just like in autotools, this detection also doesn't take into account the targeted OS version. Meaning it detects `strtonum` even if targeting e.g. macOS older than release v11 Big Sur (which introduced this funcitions), if the SDK declares it. Wrong detection will either cause a binary broken on older macOS and/or trigger compiler warnings. Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850178282 Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850276298 Prerequisite: https://github.com/libressl/portable/issues/928#issuecomment-1850356408
c4034613 2023-12-11 16:29:44 delete broken link
4dbdb1d8 2023-12-13 00:42:33 CI: fix automatic releases assets extension "zip"
819b6064 2023-12-11 16:21:00 upgrade links in comments to HTTPS
3729a8d1 2023-12-15 16:20:21 ci: cleanup coverity workflow
e2827e05 2023-12-12 23:20:44 pthreads.h: avoid undefined behavior You can't pass a function pointer through a void pointer. So wrap the pthread callback in a struct. Fixes #966