From 4ab73d6045aacd354894fe5edf0c5cfc75784064 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 8 Apr 2006 16:25:53 +0000 Subject: r15000: Move some more autoconf tests out of build/m4/rewrite.m4 Guarantee availability of __FUNCTION__ in libreplace (This used to be commit 76b1576541210f2bb306ae17e0876b254e8dcead) --- source4/lib/replace/README | 4 ++++ source4/lib/replace/config.m4 | 8 +++++++- source4/lib/replace/replace.h | 4 ++++ 3 files changed, 15 insertions(+), 1 deletion(-) (limited to 'source4/lib/replace') diff --git a/source4/lib/replace/README b/source4/lib/replace/README index a789f66b81..841bcf4b8d 100644 --- a/source4/lib/replace/README +++ b/source4/lib/replace/README @@ -65,6 +65,10 @@ UINT16_MAX UINT32_MAX UINT64_MAX +Macros: +va_copy +__FUNCTION__ + Prerequisites: memset (for bzero) syslog (for vsyslog) diff --git a/source4/lib/replace/config.m4 b/source4/lib/replace/config.m4 index 99cecc630e..fb6e791353 100644 --- a/source4/lib/replace/config.m4 +++ b/source4/lib/replace/config.m4 @@ -152,4 +152,10 @@ if test x"$samba_cv_HAVE___VA_COPY" = x"yes"; then fi fi - +dnl __FUNCTION__ macro +AC_CACHE_CHECK([for __FUNCTION__ macro],samba_cv_HAVE_FUNCTION_MACRO,[ +AC_TRY_COMPILE([#include ], [printf("%s\n", __FUNCTION__);], +samba_cv_HAVE_FUNCTION_MACRO=yes,samba_cv_HAVE_FUNCTION_MACRO=no)]) +if test x"$samba_cv_HAVE_FUNCTION_MACRO" = x"yes"; then + AC_DEFINE(HAVE_FUNCTION_MACRO,1,[Whether there is a __FUNCTION__ macro]) +fi diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index f68c5b23a9..814936c49f 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -209,4 +209,8 @@ typedef bool int; #define true (1) #endif +#ifndef HAVE_FUNCTION_MACRO +#define __FUNCTION__ ("") +#endif + #endif -- cgit