aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs
diff options
context:
space:
mode:
authorkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-12-16 06:06:32 +0000
committerkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-12-16 06:06:32 +0000
commitdb70eb4c6e3837e0561be36fcc612f65722e037b (patch)
treeef06e3343d882576fdca09b2a06ee35131451a52 /CommonLibs
parente8dde02a66a3776eead8d89441a04921fd55f274 (diff)
Patch 4545 in private:
Added support for performance-reporting counters. and Patch 4588 in private: For some reason, ReportingTest won't build on all systems. Since it is not part of the actuall application, I am commenting it out from the Makefile.am for now. git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4627 19bc5d8c-e614-43d4-8b26-e1612bc8e597
Diffstat (limited to 'CommonLibs')
-rw-r--r--CommonLibs/Configuration.h3
-rw-r--r--CommonLibs/Makefile.am12
2 files changed, 12 insertions, 3 deletions
diff --git a/CommonLibs/Configuration.h b/CommonLibs/Configuration.h
index 0b14633..3377e6d 100644
--- a/CommonLibs/Configuration.h
+++ b/CommonLibs/Configuration.h
@@ -1,6 +1,7 @@
/*
* Copyright 2009, 2010 Free Software Foundation, Inc.
-* Copyright 2010, 2012 Kestrel Signal Processing, Inc.
+* Copyright 2010 Kestrel Signal Processing, Inc.
+* Copyright 2011, 2012 Range Networks, Inc.
*
* This software is distributed under the terms of the GNU Affero Public License.
* See the COPYING file in the main directory for details.
diff --git a/CommonLibs/Makefile.am b/CommonLibs/Makefile.am
index 6bba671..624ba44 100644
--- a/CommonLibs/Makefile.am
+++ b/CommonLibs/Makefile.am
@@ -1,5 +1,6 @@
#
# Copyright 2008, 2009 Free Software Foundation, Inc.
+# Copyright 2011, 2012 Range Networks, Inc.
#
# This software is distributed under the terms of the GNU Public License.
# See the COPYING file in the main directory for details.
@@ -31,10 +32,11 @@ libcommon_la_SOURCES = \
Sockets.cpp \
Threads.cpp \
Timeval.cpp \
+ Configuration.cpp \
+ sqlite3util.cpp \
Logger.cpp \
URLEncode.cpp \
- Configuration.cpp \
- sqlite3util.cpp
+ Reporting.cpp
noinst_PROGRAMS = \
BitVectorTest \
@@ -47,6 +49,8 @@ noinst_PROGRAMS = \
LogTest \
F16Test
+# ReportingTest
+
noinst_HEADERS = \
BitVector.h \
Interthread.h \
@@ -58,6 +62,7 @@ noinst_HEADERS = \
Vector.h \
URLEncode.h \
Configuration.h \
+ Reporting.h \
F16.h \
Logger.h \
sqlite3util.h
@@ -85,6 +90,9 @@ RegexpTest_LDADD = libcommon.la
ConfigurationTest_SOURCES = ConfigurationTest.cpp
ConfigurationTest_LDADD = libcommon.la $(SQLITE_LA)
+#ReportingTest_SOURCES = ReportingTest.cpp
+#ReportingTest_LDADD = libcommon.la $(SQLITE_LA)
+
LogTest_SOURCES = LogTest.cpp
LogTest_LDADD = libcommon.la $(SQLITE_LA)