]> granicus.if.org Git - icinga2/commitdiff
Removed unused classes from the build scripts.
authorGunnar Beutner <gunnar.beutner@netways.de>
Fri, 18 May 2012 20:14:32 +0000 (22:14 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Fri, 18 May 2012 20:14:32 +0000 (22:14 +0200)
base/Makefile.am
base/attic/condvar.cpp [moved from base/condvar.cpp with 100% similarity]
base/attic/condvar.h [moved from base/condvar.h with 100% similarity]
base/attic/lock.cpp [moved from base/lock.cpp with 100% similarity]
base/attic/lock.h [moved from base/lock.h with 100% similarity]
base/attic/mutex.cpp [moved from base/mutex.cpp with 100% similarity]
base/attic/mutex.h [moved from base/mutex.h with 100% similarity]
base/attic/thread.cpp [moved from base/thread.cpp with 100% similarity]
base/attic/thread.h [moved from base/thread.h with 100% similarity]
base/i2-base.h

index daa171ce8ef082b52d8f0a66d1689e84807e098c..9c947730bc31a4c55870fa420464711d52905064 100644 (file)
@@ -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 \
similarity index 100%
rename from base/condvar.cpp
rename to base/attic/condvar.cpp
similarity index 100%
rename from base/condvar.h
rename to base/attic/condvar.h
similarity index 100%
rename from base/lock.cpp
rename to base/attic/lock.cpp
similarity index 100%
rename from base/lock.h
rename to base/attic/lock.h
similarity index 100%
rename from base/mutex.cpp
rename to base/attic/mutex.cpp
similarity index 100%
rename from base/mutex.h
rename to base/attic/mutex.h
similarity index 100%
rename from base/thread.cpp
rename to base/attic/thread.cpp
similarity index 100%
rename from base/thread.h
rename to base/attic/thread.h
index 5dba56915589681f3f75f60aba25076dab05a53c..2b6003128146d15798eb53a1277683bbc417dfcd 100644 (file)
@@ -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"