From: Florian Forster Date: Thu, 5 Apr 2007 17:56:42 +0000 (+0200) Subject: src/Makefile.am: Added `network.h' to the dependencies for the network plugin. X-Git-Tag: collectd-4.0.0-rc4~20 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d78a04845e1c9b5b8a376728f5ec621b6e95185b;p=collectd.git src/Makefile.am: Added `network.h' to the dependencies for the network plugin. --- diff --git a/configure.in b/configure.in index a7762568..dad499a9 100644 --- a/configure.in +++ b/configure.in @@ -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) diff --git a/src/Makefile.am b/src/Makefile.am index 662b49db..32bef648 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 diff --git a/src/collectd.c b/src/collectd.c index f8f2fcc5..0986e403 100644 --- a/src/collectd.c +++ b/src/collectd.c @@ -23,7 +23,6 @@ #include "collectd.h" #include "common.h" -#include "network.h" #include "plugin.h" #include "configfile.h" diff --git a/src/configfile.c b/src/configfile.c index 311ebb38..c63240e7 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -27,7 +27,6 @@ #include "common.h" #include "plugin.h" #include "configfile.h" -#include "network.h" #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))