src/rrdd.[ch]: Use package name and version from config.h.
authorFlorian Forster <octo@verplant.org>
Sat, 21 Jun 2008 02:04:54 +0000 (04:04 +0200)
committerFlorian Forster <octo@verplant.org>
Sat, 21 Jun 2008 02:04:54 +0000 (04:04 +0200)
src/rrdd.c
src/rrdd.h

index c9e5e3e..13fdc90 100644 (file)
@@ -243,7 +243,8 @@ int main (int argc, char **argv)
 {
   int status;
 
-  printf ("rrdd by Florian Forster, Version 0.1\n");
+  printf ("%s by Florian Forster, Version %s\n",
+      PACKAGE_NAME, PACKAGE_VERSION);
 
   status = daemonize ();
   if (status == 1)
index 05c57ba..cd46f2c 100644 (file)
@@ -68,6 +68,8 @@
 
 #include <rrd.h>
 
+#include "config.h"
+
 #define RRDD_SOCK_PATH "/tmp/rrdd.sock"
 
 #endif /* __RRDD_H */