[Box Backup-dev] COMMIT r832 - box/chris/merge/bin/bbstored

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Wed, 30 Aug 2006 19:54:32 +0100


Author: chris
Date: 2006-08-30 19:54:31 +0100 (Wed, 30 Aug 2006)
New Revision: 832

Modified:
   box/chris/merge/bin/bbstored/BBStoreDHousekeeping.cpp
Log:
* bin/bbstored/BBStoreDHousekeeping.cpp
- Only include syslog.h if we have one


Modified: box/chris/merge/bin/bbstored/BBStoreDHousekeeping.cpp
===================================================================
--- box/chris/merge/bin/bbstored/BBStoreDHousekeeping.cpp	2006-08-30 18:52:01 UTC (rev 831)
+++ box/chris/merge/bin/bbstored/BBStoreDHousekeeping.cpp	2006-08-30 18:54:31 UTC (rev 832)
@@ -10,8 +10,11 @@
 #include "Box.h"
 
 #include <stdio.h>
-#include <syslog.h>
 
+#ifdef HAVE_SYSLOG_H
+	#include <syslog.h>
+#endif
+
 #include "BackupStoreDaemon.h"
 #include "BackupStoreAccountDatabase.h"
 #include "BackupStoreAccounts.h"