summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 34ba941)
raw | patch | inline | side by side (parent: 34ba941)
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | |
Fri, 8 Nov 2002 07:20:05 +0000 (07:20 +0000) | ||
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | |
Fri, 8 Nov 2002 07:20:05 +0000 (07:20 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@174 f882894a-f735-0410-b71e-b25c423dba1c
acconfig.h | patch | blob | history | |
configure.in | patch | blob | history | |
plugins/common.h.in | patch | blob | history | |
plugins/utils.c | patch | blob | history | |
plugins/utils.h.in | patch | blob | history |
diff --git a/acconfig.h b/acconfig.h
index 55fb9a2ca9eb982ec70c5324843fc849581dd4bb..b283039609896fdcade900836ab582b2176952a2 100644 (file)
--- a/acconfig.h
+++ b/acconfig.h
#undef CGIURL
#undef COMPILER_SUPPORTS_LL
#undef DF_COMMAND
+#undef HAVE_ASPRINTF
#undef HAVE_C99_VSNPRINTF
#undef HAVE_GETOPT_H
#undef HAVE_GETOPT_LONG
+#undef HAVE_GETTIMEOFDAY
#undef HAVE_LONGLONG
#undef HAVE_PROC_LOADAVG
#undef HAVE_PROC_MEMINFO
#undef HAVE_SSL
+#undef HAVE_SNPRINTF
#undef HAVE_SWAP
#undef HAVE_VA_COPY
+#undef HAVE_VASPRINTF
+#undef HAVE_VSNPRINTF
#undef NSLOOKUP_COMMAND
#undef HOST_COMMAND
#undef PACKAGE_VERSION
diff --git a/configure.in b/configure.in
index d75940571582821c349a68973f71ca2a1f1e2282..bdd4013ebee16355d1edbcf3914778d32a215c49 100644 (file)
--- a/configure.in
+++ b/configure.in
AC_PREFIX_DEFAULT(/usr/local/nagios)
-#AC_DEFUN(AC_HAVE_DECL,
-#[
-# AC_CACHE_CHECK([for $1 declaration],ac_cv_have_$1_decl,[
-# AC_TRY_COMPILE([$2],[int i = (int)$1],
-# ac_cv_have_$1_decl=yes,ac_cv_have_$1_decl=no)])
-# if test x"$ac_cv_have_$1_decl" = x"yes"; then
-# AC_DEFINE([HAVE_]translit([$1], [a-z], [A-Z])[_DECL],1,[Whether $1() is available])
-# fi
-#])
-
-
dnl Figure out how to invoke "install" and what install options to use.
AC_PROG_INSTALL
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
+
dnl We used to not do long options unless a compatible lib was found
dnl Now we provide code and make libgetopt if native is not suitable
AC_MSG_CHECKING(for getopt_long)
AC_CHECK_FUNCS(getopt_long_only,,LIBS="$LIBS -lgetopt" DEPLIBS="$DEPLIBS libgetopt.a")
-#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]))
-AC_CHECK_FUNC(vsnprintf,AC_DEFINE(HAVE_VSNPRINTF,1,[Define if vsnprintf is present]))
-AC_CHECK_FUNC(vasprintf,AC_DEFINE(HAVE_VASPRINTF,1,[Define if vasprintf is present]))
-AC_CHECK_FUNC(asprintf,AC_DEFINE(HAVE_ASPRINTF,1,[Define if asprintf is present]))
-
-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 *foo;],
+ [AC_DEFINE(HAVE_STRUCT_TIMEVAL,1,[Define if we have a timeval structure])])
+AC_TRY_COMPILE([#include <sys/time.h>],
+ [gettimeofday(NULL, NULL);],
+ AC_DEFINE(HAVE_GETTIMEOFDAY,1,[Define if gettimeofday is found]))
dnl Checks for library functions.
-AC_CHECK_FUNCS(memmove select socket strdup strstr strtod strtol strtoul gettimeofday)
+AC_CHECK_FUNCS(memmove select socket strdup strstr strtod strtol strtoul)
AC_MSG_CHECKING(for type of socket size)
AC_TRY_COMPILE([#include <stdlib.h>
diff --git a/plugins/common.h.in b/plugins/common.h.in
index 728170287097f6e033d12bd267136090c677d5bc..535ae4a017954248cbdd161670140d6af68105d5 100644 (file)
--- a/plugins/common.h.in
+++ b/plugins/common.h.in
# define strtoul(a,b,c) (unsigned long)atol((a))
#endif
+#ifndef HAVE_ASPRINTF
+int asprintf(char **strp, const char *fmt, ...);
+#endif
+
+#ifndef HAVE_VASPRINTF
+/* int vasprintf(char **strp, const char *fmt, va_list ap); */
+#endif
+
+#ifndef HAVE_SNPRINTF
+int snprintf(char *str, size_t size, const char *format, ...);
+#endif
+
+#ifndef HAVE_VSNPRINTF
+int vsnprintf(char *str, size_t size, const char *format, va_list ap);
+#endif
+
/*
*
* Standard Values
diff --git a/plugins/utils.c b/plugins/utils.c
index a4519f250c9d0f06385a7c88fbc0f5d9736515e4..bf1d20479d034c3ee979d5ad386ec2877de11e17 100644 (file)
--- a/plugins/utils.c
+++ b/plugins/utils.c
int is_option (char *str);
+double delta_time (struct timeval tv);
+
void strip (char *);
char *strscpy (char *dest, const char *src);
char *strscat (char *dest, const char *src);
+#ifndef HAVE_GETTIMEOFDAY
+int
+gettimeofday (struct timeval *tv, struct timezone *tz)
+{
+ tv->tv_usec = 0;
+ tv->tv_sec = (long) time ((time_t) 0);
+}
+#endif
+
+
double
delta_time (struct timeval tv)
{
struct timeval now;
- struct timezone tz;
- double et;
gettimeofday (&now, NULL);
return ((double)(now.tv_sec - tv.tv_sec) + (double)(now.tv_usec - tv.tv_usec) / (double)1000000);
char *
strscpy (char *dest, const char *src)
{
- size_t len;
-
if (src == NULL)
return NULL;
diff --git a/plugins/utils.h.in b/plugins/utils.h.in
index d88d0cb060733e2ba13219b20c96a7d70b8fe766..2b668f3c0a9a07cde6789f90c13332814b9363de 100644 (file)
--- a/plugins/utils.h.in
+++ b/plugins/utils.h.in
int is_option (char *);
/* generalized timer that will do milliseconds if available */
-#ifndef HAVE_GETTIMEOFDAY
+#ifndef HAVE_STRUCT_TIMEVAL
struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};
+#endif
-#define gettimeofday (tvp,tz) {\
- tvp->tv_usec=0;\
- tvp->tv_sec=(long)time();\
-}
+#ifndef HAVE_GETTIMEOFDAY
+int gettimeofday(struct timeval *tv, struct timezone *tz);
#endif
double delta_time (struct timeval tv);