gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 119/156: configure: fixed detection of __FUNCTION__ magi


From: gnunet
Subject: [libmicrohttpd] 119/156: configure: fixed detection of __FUNCTION__ magic macro
Date: Sun, 28 May 2023 17:52:52 +0200

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

karlson2k pushed a commit to tag v0.9.77
in repository libmicrohttpd.

commit a491e892e183b37c03bb742b28f41daf3022c0c7
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Fri May 19 14:24:36 2023 +0300

    configure: fixed detection of __FUNCTION__ magic macro
---
 configure.ac | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 344a6ee9..d7bb6da1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1279,7 +1279,19 @@ AS_VAR_IF([mhd_cv_macro___func___avail], ["yes"],
       AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stddef.h>]],[[const char 
*funcname = __FUNCTION__ ; if (NULL == funcname) return 1;]])],
         
[[mhd_cv_macro___function___avail="yes"]],[[mhd_cv_macro___function___avail="no"]])
     ])
-    AC_DEFINE([HAVE___FUNCTION__], [1], [Define to 1 if your compiler supports 
__FUNCTION__ magic-macro.])
+    AS_VAR_IF([mhd_cv_macro___function___avail], ["yes"],
+      [AC_DEFINE([HAVE___FUNCTION__], [1], [Define to 1 if your compiler 
supports __FUNCTION__ magic-macro.])],
+      [
+        AC_CACHE_CHECK([[whether __PRETTY_FUNCTION__ magic-macro is 
available]],
+          [[mhd_cv_macro___pretty_function___avail]], [dnl
+          AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stddef.h>]],[[const char 
*funcname = __PRETTY_FUNCTION__ ; if (NULL == funcname) return 1;]])],
+            
[[mhd_cv_macro___pretty_function___avail="yes"]],[[mhd_cv_macro___pretty_function___avail="no"]])
+        ])
+        AS_VAR_IF([mhd_cv_macro___pretty_function___avail], ["yes"],
+          [AC_DEFINE([HAVE___PRETTY_FUNCTION__], [1], [Define to 1 if your 
compiler supports __PRETTY_FUNCTION__ magic-macro.])],
+        )
+      ]
+    )
   ]
 )
 AC_CACHE_CHECK([[whether __builtin_bswap32() is available]],

-- 
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]