src/Makefile.am: Added `network.h' to the dependencies for the network plugin.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 5 Apr 2007 17:56:42 +0000 (19:56 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 5 Apr 2007 17:56:42 +0000 (19:56 +0200)
configure.in
src/Makefile.am
src/collectd.c
src/configfile.c

index a776256..dad499a 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(collectd, 4.0.0-rc1)
+AC_INIT(collectd, 4.0.0-rc2)
 AC_CONFIG_SRCDIR(src/collectd.c)
 AC_CONFIG_HEADERS(src/config.h)
 AM_INIT_AUTOMAKE(dist-bzip2)
index 662b49d..32bef64 100644 (file)
@@ -347,7 +347,7 @@ endif
 
 if BUILD_MODULE_NETWORK
 pkglib_LTLIBRARIES += network.la
-network_la_SOURCES = network.c
+network_la_SOURCES = network.c network.h
 network_la_LDFLAGS = -module -avoid-version
 if BUILD_WITH_LIBSOCKET
 network_la_LDFLAGS += -lsocket
index f8f2fcc..0986e40 100644 (file)
@@ -23,7 +23,6 @@
 #include "collectd.h"
 #include "common.h"
 
-#include "network.h"
 #include "plugin.h"
 #include "configfile.h"
 
index 311ebb3..c63240e 100644 (file)
@@ -27,7 +27,6 @@
 #include "common.h"
 #include "plugin.h"
 #include "configfile.h"
-#include "network.h"
 
 #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))