From 62c8b700db5f4b2c04284c9fdf5ddc3e136b8307 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 18 May 2012 22:14:32 +0200 Subject: [PATCH] Removed unused classes from the build scripts. --- base/Makefile.am | 8 -------- base/{ => attic}/condvar.cpp | 0 base/{ => attic}/condvar.h | 0 base/{ => attic}/lock.cpp | 0 base/{ => attic}/lock.h | 0 base/{ => attic}/mutex.cpp | 0 base/{ => attic}/mutex.h | 0 base/{ => attic}/thread.cpp | 0 base/{ => attic}/thread.h | 0 base/i2-base.h | 4 ---- 10 files changed, 12 deletions(-) rename base/{ => attic}/condvar.cpp (100%) rename base/{ => attic}/condvar.h (100%) rename base/{ => attic}/lock.cpp (100%) rename base/{ => attic}/lock.h (100%) rename base/{ => attic}/mutex.cpp (100%) rename base/{ => attic}/mutex.h (100%) rename base/{ => attic}/thread.cpp (100%) rename base/{ => attic}/thread.h (100%) 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"