From 932748fe2ee09c2974ccca82755d35aedb048035 Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Tue, 22 Oct 2019 13:38:16 +0200 Subject: [PATCH] re-add definition of OPENSSL_MSTR deleted from opensslv.h in macros.h Reviewed-by: Richard Levitte Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/10236) --- include/openssl/macros.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/openssl/macros.h b/include/openssl/macros.h index 0c45580405..8548bde542 100644 --- a/include/openssl/macros.h +++ b/include/openssl/macros.h @@ -13,6 +13,10 @@ #ifndef OPENSSL_MACROS_H # define OPENSSL_MACROS_H +/* Helper macros for CPP string composition */ +# define OPENSSL_MSTR_HELPER(x) #x +# define OPENSSL_MSTR(x) OPENSSL_MSTR_HELPER(x) + /* * Sometimes OPENSSSL_NO_xxx ends up with an empty file and some compilers * don't like that. This will hopefully silence them. -- 2.25.1