kc3-lang/libressl

Branch :


Log

Author Commit Date CI Message
258ba3ff 2023-11-08 06:31:34 Land #940, avoid redefinition of OPENSSL_NO_ASM
43cb91c9 2023-11-08 02:09:32 amd64/bn_arch.h: avoid redefinition of `OPENSSL_NO_ASM` Fixes this warning when `OPENSSL_NO_ASM` is already set by the build system (seen with CMake): ``` In file included from ./libressl/crypto/bn/bn_mul.c:65: ./libressl/crypto/bn/arch/amd64/bn_arch.h:24:9: warning: 'OPENSSL_NO_ASM' macro redefined [-Wmacro-redefined] ^ <command line>:10:9: note: previous definition is here ^ ``` Reported in #910
88510a3f 2023-11-07 19:30:58 Land #938, cmake: simplify if expressions, accept CPU values more consistently
34641e8f 2023-11-07 19:30:09 Land #937, remove unused C defines
b16146e0 2023-11-07 19:27:58 Land #938, cmake: simplify if expressions, accept CPU values more consistently
4322155e 2023-11-07 19:27:13 Land #937, remove unused C defines
c4813074 2023-11-07 14:08:10 Update ChangeLog
abf3be5c 2023-11-07 17:00:56 always check `CMAKE_SYSTEM_PROCESSOR` with `MATCHES` This makes it accept values consistently. Before this patch mingw-w64, Apple and SunOS did not accept a CPU if it had a suffix or prefix (e.g. a triplet), while other targets did.
27486b12 2023-11-07 16:55:52 simplify `MATCHES`/`STREQUAL` syntax
557b5a19 2023-11-07 14:39:16 cmake: stop passing unused C macros - `-DCPPFLAGS`: probably a copy-paste typo from the initial CMake commit. - `-DNO_CRYPT`: `NO_CRYPT` is no longer used in the source and this macro is no longer set by autotools.