aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/priv.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libssh/priv.h')
-rw-r--r--include/libssh/priv.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 697b45bf..e8b50ba0 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -139,8 +139,12 @@ int gettimeofday(struct timeval *__p, void *__t);
#define MAX_BUF_SIZE 4096
#endif
-#ifndef __func__
-#define __func__ __FUNCTION__
+#ifndef HAVE_COMPILER__FUNC__
+# ifdef HAVE_COMPILER__FUNCTION__
+# define __func__ __FUNCTION__
+# else
+# error "Your system must provide a __func__ macro"
+# endif
#endif
#if defined(HAVE_GCC_THREAD_LOCAL_STORAGE)