From: Gunnar Beutner Date: Fri, 18 May 2012 20:14:32 +0000 (+0200) Subject: Removed unused classes from the build scripts. X-Git-Tag: v0.0.1~509 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62c8b700db5f4b2c04284c9fdf5ddc3e136b8307;p=icinga2 Removed unused classes from the build scripts. --- diff --git a/base/Makefile.am b/base/Makefile.am index daa171ce8..9c947730b 100644 --- a/base/Makefile.am +++ b/base/Makefile.am @@ -9,8 +9,6 @@ libbase_la_SOURCES = \ application.h \ component.cpp \ component.h \ - condvar.cpp \ - condvar.h \ configcollection.cpp \ configcollection.h \ confighive.cpp \ @@ -27,12 +25,8 @@ libbase_la_SOURCES = \ fifo.cpp \ fifo.h \ i2-base.h \ - lock.cpp \ - lock.h \ memory.cpp \ memory.h \ - mutex.cpp \ - mutex.h \ object.cpp \ object.h \ socket.cpp \ @@ -43,8 +37,6 @@ libbase_la_SOURCES = \ tcpserver.h \ tcpsocket.cpp \ tcpsocket.h \ - thread.cpp \ - thread.h \ timer.cpp \ timer.h \ tlsclient.cpp \ diff --git a/base/condvar.cpp b/base/attic/condvar.cpp similarity index 100% rename from base/condvar.cpp rename to base/attic/condvar.cpp diff --git a/base/condvar.h b/base/attic/condvar.h similarity index 100% rename from base/condvar.h rename to base/attic/condvar.h diff --git a/base/lock.cpp b/base/attic/lock.cpp similarity index 100% rename from base/lock.cpp rename to base/attic/lock.cpp diff --git a/base/lock.h b/base/attic/lock.h similarity index 100% rename from base/lock.h rename to base/attic/lock.h diff --git a/base/mutex.cpp b/base/attic/mutex.cpp similarity index 100% rename from base/mutex.cpp rename to base/attic/mutex.cpp diff --git a/base/mutex.h b/base/attic/mutex.h similarity index 100% rename from base/mutex.h rename to base/attic/mutex.h diff --git a/base/thread.cpp b/base/attic/thread.cpp similarity index 100% rename from base/thread.cpp rename to base/attic/thread.cpp diff --git a/base/thread.h b/base/attic/thread.h similarity index 100% rename from base/thread.h rename to base/attic/thread.h diff --git a/base/i2-base.h b/base/i2-base.h index 5dba56915..2b6003128 100644 --- a/base/i2-base.h +++ b/base/i2-base.h @@ -95,10 +95,6 @@ using namespace std::tr1::placeholders; # define I2_BASE_API I2_IMPORT #endif /* I2_BASE_BUILD */ -#include "mutex.h" -#include "lock.h" -#include "condvar.h" -#include "thread.h" #include "utility.h" #include "object.h" #include "exception.h"