Changed `COLLECTD_STEP' to be a string..
authorocto <octo>
Wed, 15 Mar 2006 11:42:53 +0000 (11:42 +0000)
committerocto <octo>
Wed, 15 Mar 2006 11:42:53 +0000 (11:42 +0000)
configure.in
src/collectd.h

index 2f3fdc5..d533a7f 100644 (file)
@@ -538,7 +538,7 @@ AC_ARG_WITH(heartbeat, [AS_HELP_STRING([--with-heartbeat=SECONDS], [Heartbeat of
 
 if test $collectd_step -ne 10
 then
-       AC_DEFINE_UNQUOTED(COLLECTD_STEP, $collectd_step, [Interval in which plugins are queried.])
+       AC_DEFINE_UNQUOTED(COLLECTD_STEP, "$collectd_step", [Interval in which plugins are queried.])
 fi
 if test $collectd_heartbeat -ne 25
 then
index d00dce3..5c21325 100644 (file)
 #define MODE_LOCAL  0x04
 
 #ifndef COLLECTD_STEP
-#  define COLLECTD_STEP 10
+#  define COLLECTD_STEP "10"
 #endif
 
 #ifndef COLLECTD_HEARTBEAT