From 10ad1196e3f7f240a231e91d7cb2a612da3d6b4e Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 15 Mar 2006 17:02:32 +0000 Subject: Tighter check if strerror declaration is needed. svn path=/branches/BRANCH_6-3/; revision=4743 --- configure.ac | 2 ++ fetchmail.h | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 4fb2f4e7..1549aed9 100644 --- a/configure.ac +++ b/configure.ac @@ -141,6 +141,8 @@ AC_CHECK_FUNCS(tcsetattr stty setsid geteuid seteuid dnl atexit inet_aton strftime setrlimit socketpair sigprocmask dnl sigaction strdup setlocale) +AC_CHECK_DECLS(strerror) + # Under Red Hat 4.0 (and many other Linuxes) -lresolv is seriously flaky # and breaks gethostbyname(2). It's better to use the bind stuff in the C # library. So don't add -lresolv to the link list unless it's necessary diff --git a/fetchmail.h b/fetchmail.h index a687372e..67320374 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -687,11 +687,11 @@ void itimerthread(void*); #define chdir _chdir2 #endif /* _EMX_ */ -# if HAVE_STRERROR -# ifndef strerror /* On some systems, strerror is a macro */ +#ifdef HAVE_STRERROR +# if !defined(strerror) && !defined(HAVE_DECL_STRERROR) /* On some systems, strerror is a macro */ char *strerror (int); # endif -# endif /* HAVE_STRERROR */ +#endif /* HAVE_STRERROR */ #define STRING_DISABLED (char *)-1 #define STRING_DUMMY "" -- cgit v1.2.3