Code

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 2f3fdc52e6c8edb6d8073139a07b5edfeaabbec2..d533a7f80fc44111a461d864532e298b941f7a2a 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 d00dce326b568b2ff11526ca2bd6d17fc7aac39c..5c213256902d77f32a5d0b3948392d998331c223 100644 (file)
 #define MODE_LOCAL  0x04
 
 #ifndef COLLECTD_STEP
-#  define COLLECTD_STEP 10
+#  define COLLECTD_STEP "10"
 #endif
 
 #ifndef COLLECTD_HEARTBEAT