Code

Set CONFIGFILE to /etc/collectd/collectd.conf.
authorSebastian Harl <sh@tokkee.org>
Fri, 12 Dec 2008 09:10:16 +0000 (10:10 +0100)
committerSebastian Harl <sh@tokkee.org>
Fri, 12 Dec 2008 09:10:16 +0000 (10:10 +0100)
debian/changelog
debian/rules

index a6e5dff90b0a3792787aec80af878be171add0fb..69ab0cf4ac170e1fcd44e387d0b1c4ba5e5c442e 100644 (file)
@@ -20,6 +20,7 @@ collectd (4.5.1-1) experimental; urgency=low
   * debian/rules:
     - Disabled onewire plugin - owfs is not yet available in Debian.
     - Install contrib/snmp-probe-host.px to /usr/share/doc/collectd/examples/.
+    - Set CONFIGFILE to /etc/collectd/collectd.conf.
   * debian/patches:
     - Added perl-uninitialized-var.dpatch - upstream patch to fix an
       uninitialized variable warning causing a FTBFS because of -Werror.
@@ -37,7 +38,7 @@ collectd (4.5.1-1) experimental; urgency=low
   * debian/collectd.init.d:
     - Do not restart collectd if the configuration test fails.
 
- -- Sebastian Harl <sh@tokkee.org>  Sun, 07 Dec 2008 18:50:32 +0100
+ -- Sebastian Harl <sh@tokkee.org>  Fri, 12 Dec 2008 10:09:48 +0100
 
 collectd (4.4.2-3) unstable; urgency=low
 
index 9095d53e07cb92579b7e3f5178804d614696ba70..beebe96fb9132c86345b921c9a3866fed8da35d0 100755 (executable)
@@ -21,6 +21,11 @@ CFLAGS = -Wall -g
 # symbols). This is a workaround for this issue.
 CPPFLAGS += -DLT_LAZY_OR_NOW='RTLD_LAZY|RTLD_GLOBAL'
 
+# Upstream defaults to ${sysconfdir}/collectd.conf. Setting ${sysconfdir} to
+# /etc/collectd would be wrong though.
+CPPFLAGS += -UCONFIGFILE
+CPPFLAGS += -DCONFIGFILE='\"/etc/collectd/collectd.conf\"'
+
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
        CFLAGS += -O0
 else