gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 21/36: Added internal preprocessor macro for magic macro


From: gnunet
Subject: [libmicrohttpd] 21/36: Added internal preprocessor macro for magic macro presence
Date: Thu, 01 Jun 2023 12:30:26 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 612d20b28d1b1671fd3c4f999e34758f8203e442
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu Jun 1 11:28:22 2023 +0300

    Added internal preprocessor macro for magic macro presence
---
 src/include/mhd_options.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/include/mhd_options.h b/src/include/mhd_options.h
index 821407a9..a7fadfae 100644
--- a/src/include/mhd_options.h
+++ b/src/include/mhd_options.h
@@ -178,12 +178,18 @@
  */
 #if defined(HAVE___FUNC__)
 #define MHD_FUNC_       __func__
+#define MHD_HAVE_MHD_FUNC_ 1
 #elif defined(HAVE___FUNCTION__)
 #define MHD_FUNC_       __FUNCTION__
+#define MHD_HAVE_MHD_FUNC_ 1
 #elif defined(HAVE___PRETTY_FUNCTION__)
 #define MHD_FUNC_       __PRETTY_FUNCTION__
+#define MHD_HAVE_MHD_FUNC_ 1
 #else
 #define MHD_FUNC_       "**name unavailable**"
+#ifdef MHD_HAVE_MHD_FUNC_
+#undef MHD_HAVE_MHD_FUNC_
+#endif /* MHD_HAVE_MHD_FUNC_ */
 #endif
 
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]