diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-08 11:44:37 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-08 11:44:37 +0000 |
commit | fd0a7d3b5a206dd98f339d4d76b6b92be0b89090 (patch) | |
tree | 34bb27f10a9227b9800c05d1104d0333bc9ec9eb | |
parent | af8af437f390e008361084b0a59e4cc155cc39c1 (diff) | |
download | monitoring-plugins-fd0a7d3b5a206dd98f339d4d76b6b92be0b89090.tar.gz |
snprintf checks in configure.in like samba
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@386 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | configure.in | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/configure.in b/configure.in index 7fccb98d..029b583c 100644 --- a/configure.in +++ b/configure.in @@ -493,6 +493,7 @@ if test x"$ac_cv_HAVE_VA_COPY" = x"yes"; then AC_DEFINE(HAVE_VA_COPY,1,[Define if system has va_copy]) fi +AC_CHECK_FUNCS(vsnprintf snprintf asprintf vasprintf) AC_CACHE_CHECK([for C99 vsnprintf],ac_cv_HAVE_C99_VSNPRINTF,[ AC_TRY_RUN([ #include <sys/types.h> @@ -523,28 +524,6 @@ if test x"$ac_cv_HAVE_C99_VSNPRINTF" = x"yes"; then AC_DEFINE(HAVE_C99_VSNPRINTF,1,[Define if system has C99 compatible vsnprintf]) fi -#AC_HAVE_DECL(asprintf, [#include <stdio.h>]) -#AC_HAVE_DECL(vasprintf, [#include <stdio.h>]) -#AC_HAVE_DECL(vsnprintf, [#include <stdio.h>]) -#AC_HAVE_DECL(snprintf, [#include <stdio.h>]) - -AC_CHECK_FUNC(snprintf, - AC_DEFINE(HAVE_SNPRINTF,1,[Define if snprintf is present]), - LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a") -AC_CHECK_FUNC(vsnprintf, - AC_DEFINE(HAVE_VSNPRINTF,1,[Define if vsnprintf is present]), - LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a") -AC_CHECK_FUNC(vasprintf, - AC_DEFINE(HAVE_VASPRINTF,1,[Define if vasprintf is present]), - LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a") -AC_CHECK_FUNC(asprintf, - AC_DEFINE(HAVE_ASPRINTF,1,[Define if asprintf is present]), - LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a") - -if test x"$ac_cv_HAVE_SNPRINTF" = x"no" -o x"$ac_cv_HAVE_VSNPRINTF" = x"no" -o x"$ac_cv_HAVE_VASPRINTF" = x"no" -o x"$ac_cv_HAVE_ASPRINTF" = x"no"; then - LIBS="$LIBS -lsnprintf" DEPLIBS="$DEPLIBS libsnprintf.a" -fi - AC_TRY_COMPILE([#include <sys/time.h>], [struct timeval *tv; struct timezone *tz;], |