From 5e34e6a57396efa59cea37a0246be060a8ed56c1 Mon Sep 17 00:00:00 2001 From: Eugene Syromiatnikov Date: Fri, 11 Jul 2025 14:46:24 +0200 Subject: [PATCH] util/other.syms: sort OPENSSL_*cap lexicographically, add missing variables The list includes OPENSSL_ia32cap, OPENSSL_riscvcap, and OPENSSL_s390xcap, but not OPENSSL_armcap, OPENSSL_ppccap, or OPENSSL_sparcv9cap; fix that. Signed-off-by: Eugene Syromiatnikov Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/28025) --- util/other.syms | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/other.syms b/util/other.syms index 44c85f53be6..bc4d6576f30 100644 --- a/util/other.syms +++ b/util/other.syms @@ -2,9 +2,12 @@ # that don't appear in lib*.num -- because they are define's, in # assembly language, etc. # +OPENSSL_armcap environment OPENSSL_ia32cap environment -OPENSSL_s390xcap environment +OPENSSL_ppccap environment OPENSSL_riscvcap environment +OPENSSL_s390xcap environment +OPENSSL_sparcv9cap environment OPENSSL_MALLOC_FD environment OPENSSL_MALLOC_FAILURES environment OPENSSL_instrument_bus assembler -- 2.47.2