[svn] commit: r700 - in /branches/parkinglot: ./ src/bin/auth/ src/bin/host/ src/bin/parkinglot/ src/lib/auth/cpp/ src/lib/cc/cpp/ src/lib/config/cpp/

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Feb 2 15:33:56 UTC 2010


Author: jelte
Date: Tue Feb  2 15:33:55 2010
New Revision: 700

Log:
- use <builddir>/include (the one with the symlinks) for all includes
  so that we do not have to add /cpp/ to every #include line
- removed /cpp/ from every include line

Modified:
    branches/parkinglot/Makefile.am
    branches/parkinglot/src/bin/auth/Makefile.am
    branches/parkinglot/src/bin/auth/auth_srv.cc
    branches/parkinglot/src/bin/auth/auth_srv.h
    branches/parkinglot/src/bin/auth/main.cc
    branches/parkinglot/src/bin/host/Makefile.am
    branches/parkinglot/src/bin/parkinglot/Makefile.am
    branches/parkinglot/src/bin/parkinglot/b10-parkinglot.cc
    branches/parkinglot/src/bin/parkinglot/b10-parkinglot.h
    branches/parkinglot/src/bin/parkinglot/builtin.cc
    branches/parkinglot/src/bin/parkinglot/builtin.h
    branches/parkinglot/src/bin/parkinglot/builtin_bench.cc
    branches/parkinglot/src/bin/parkinglot/data_source.cc
    branches/parkinglot/src/bin/parkinglot/data_source.h
    branches/parkinglot/src/bin/parkinglot/data_source_plot.cc
    branches/parkinglot/src/bin/parkinglot/data_source_plot.h
    branches/parkinglot/src/bin/parkinglot/main.cc
    branches/parkinglot/src/bin/parkinglot/zoneset.h
    branches/parkinglot/src/lib/auth/cpp/Makefile.am
    branches/parkinglot/src/lib/auth/cpp/data_source.cc
    branches/parkinglot/src/lib/auth/cpp/data_source.h
    branches/parkinglot/src/lib/auth/cpp/data_source_plot.cc
    branches/parkinglot/src/lib/auth/cpp/data_source_plot.h
    branches/parkinglot/src/lib/auth/cpp/data_source_static.cc
    branches/parkinglot/src/lib/auth/cpp/query.cc
    branches/parkinglot/src/lib/auth/cpp/query.h
    branches/parkinglot/src/lib/cc/cpp/Makefile.am
    branches/parkinglot/src/lib/cc/cpp/data.h
    branches/parkinglot/src/lib/config/cpp/Makefile.am
    branches/parkinglot/src/lib/config/cpp/ccsession.cc
    branches/parkinglot/src/lib/config/cpp/ccsession.h
    branches/parkinglot/src/lib/config/cpp/data_def.h

Modified: branches/parkinglot/Makefile.am
==============================================================================
--- branches/parkinglot/Makefile.am (original)
+++ branches/parkinglot/Makefile.am Tue Feb  2 15:33:55 2010
@@ -39,6 +39,7 @@
 
 include:
 	mkdir include
+	ln -s ${abs_top_srcdir}/src/lib/auth/cpp include/auth
 	ln -s ${abs_top_srcdir}/src/lib/cc/cpp include/cc
 	ln -s ${abs_top_srcdir}/src/lib/config/cpp include/config
 	ln -s ${abs_top_srcdir}/src/lib/dns/cpp include/dns

Modified: branches/parkinglot/src/bin/auth/Makefile.am
==============================================================================
--- branches/parkinglot/src/bin/auth/Makefile.am (original)
+++ branches/parkinglot/src/bin/auth/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext
+AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_builddir)/include/dns/cpp -I$(top_builddir)/include -I$(top_srcdir)/ext
 
 bin_PROGRAMS = b10-auth
 b10_auth_SOURCES = auth_srv.cc auth_srv.h

Modified: branches/parkinglot/src/bin/auth/auth_srv.cc
==============================================================================
--- branches/parkinglot/src/bin/auth/auth_srv.cc (original)
+++ branches/parkinglot/src/bin/auth/auth_srv.cc Tue Feb  2 15:33:55 2010
@@ -25,15 +25,15 @@
 #include <set>
 #include <iostream>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/messagerenderer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/question.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/rrttl.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/messagerenderer.h>
+#include <dns/name.h>
+#include <dns/question.h>
+#include <dns/rrset.h>
+#include <dns/rrttl.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "common.h"
 #include "auth_srv.h"

Modified: branches/parkinglot/src/bin/auth/auth_srv.h
==============================================================================
--- branches/parkinglot/src/bin/auth/auth_srv.h (original)
+++ branches/parkinglot/src/bin/auth/auth_srv.h Tue Feb  2 15:33:55 2010
@@ -17,8 +17,8 @@
 #ifndef __AUTH_SRV_H
 #define __AUTH_SRV_H 1
 
-#include <cc/cpp/data.h>
-#include <auth/cpp/data_source_static.h>
+#include <cc/data.h>
+#include <auth/data_source_static.h>
 
 class AuthSrv {
 public:

Modified: branches/parkinglot/src/bin/auth/main.cc
==============================================================================
--- branches/parkinglot/src/bin/auth/main.cc (original)
+++ branches/parkinglot/src/bin/auth/main.cc Tue Feb  2 15:33:55 2010
@@ -25,14 +25,14 @@
 
 #include <boost/foreach.hpp>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/session.h>
-#include <cc/cpp/data.h>
-#include <config/cpp/ccsession.h>
+#include <cc/session.h>
+#include <cc/data.h>
+#include <config/ccsession.h>
 
 #include "common.h"
 #include "config.h"

Modified: branches/parkinglot/src/bin/host/Makefile.am
==============================================================================
--- branches/parkinglot/src/bin/host/Makefile.am (original)
+++ branches/parkinglot/src/bin/host/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS =  -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext
+AM_CPPFLAGS =  -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_builddir)/include/dns/cpp -I$(top_builddir)/include -I$(top_srcdir)/ext
 
 bin_PROGRAMS = host
 host_SOURCES = host.cc

Modified: branches/parkinglot/src/bin/parkinglot/Makefile.am
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/Makefile.am (original)
+++ branches/parkinglot/src/bin/parkinglot/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib/dns/cpp -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext
+AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_builddir)/src/lib/dns/cpp -I$(top_builddir)/include/dns/cpp -I$(top_builddir)/include -I$(top_srcdir)/ext
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: branches/parkinglot/src/bin/parkinglot/b10-parkinglot.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/b10-parkinglot.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/b10-parkinglot.cc Tue Feb  2 15:33:55 2010
@@ -25,16 +25,16 @@
 #include <set>
 #include <iostream>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/messagerenderer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/question.h>
-#include <dns/cpp/rdataclass.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/rrttl.h>
-#include <dns/cpp/message.h>
-
-#include <cc/cpp/data.h>
+#include <dns/buffer.h>
+#include <dns/messagerenderer.h>
+#include <dns/name.h>
+#include <dns/question.h>
+#include <dns/rdataclass.h>
+#include <dns/rrset.h>
+#include <dns/rrttl.h>
+#include <dns/message.h>
+
+#include <cc/data.h>
 
 #include "common.h"
 #include "builtin.h"

Modified: branches/parkinglot/src/bin/parkinglot/b10-parkinglot.h
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/b10-parkinglot.h (original)
+++ branches/parkinglot/src/bin/parkinglot/b10-parkinglot.h Tue Feb  2 15:33:55 2010
@@ -18,7 +18,7 @@
 #define __PARKINGLOT_H 1
 
 #include "zoneset.h"
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 #include "data_source_plot.h"
 
 class ParkingLot {

Modified: branches/parkinglot/src/bin/parkinglot/builtin.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/builtin.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/builtin.cc Tue Feb  2 15:33:55 2010
@@ -17,14 +17,14 @@
 #include <string>
 #include <vector>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/messagerenderer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rdata.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrtype.h>
-#include <dns/cpp/rrttl.h>
-#include <dns/cpp/rrset.h>
+#include <dns/buffer.h>
+#include <dns/messagerenderer.h>
+#include <dns/name.h>
+#include <dns/rdata.h>
+#include <dns/rrclass.h>
+#include <dns/rrtype.h>
+#include <dns/rrttl.h>
+#include <dns/rrset.h>
 
 #include "builtin.h"
 

Modified: branches/parkinglot/src/bin/parkinglot/builtin.h
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/builtin.h (original)
+++ branches/parkinglot/src/bin/parkinglot/builtin.h Tue Feb  2 15:33:55 2010
@@ -19,8 +19,8 @@
 
 #include <boost/shared_ptr.hpp>
 
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
 
 struct BuiltinRRsetsImpl;
 

Modified: branches/parkinglot/src/bin/parkinglot/builtin_bench.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/builtin_bench.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/builtin_bench.cc Tue Feb  2 15:33:55 2010
@@ -21,15 +21,15 @@
 #include <sstream>
 #include <vector>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/messagerenderer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rdata.h>
-#include <dns/cpp/rdataclass.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrtype.h>
-#include <dns/cpp/rrttl.h>
-#include <dns/cpp/rrset.h>
+#include <dns/buffer.h>
+#include <dns/messagerenderer.h>
+#include <dns/name.h>
+#include <dns/rdata.h>
+#include <dns/rdataclass.h>
+#include <dns/rrclass.h>
+#include <dns/rrtype.h>
+#include <dns/rrttl.h>
+#include <dns/rrset.h>
 
 #include "builtin.h"
 

Modified: branches/parkinglot/src/bin/parkinglot/data_source.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/data_source.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/data_source.cc Tue Feb  2 15:33:55 2010
@@ -1,9 +1,9 @@
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "data_source.h"
 

Modified: branches/parkinglot/src/bin/parkinglot/data_source.h
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/data_source.h (original)
+++ branches/parkinglot/src/bin/parkinglot/data_source.h Tue Feb  2 15:33:55 2010
@@ -17,8 +17,8 @@
 #ifndef __DATA_SOURCE_H
 #define __DATA_SOURCE_H
 
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
 
 namespace isc {
 namespace dns {

Modified: branches/parkinglot/src/bin/parkinglot/data_source_plot.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/data_source_plot.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/data_source_plot.cc Tue Feb  2 15:33:55 2010
@@ -1,8 +1,8 @@
 
 #include <boost/foreach.hpp>
 
-#include <dns/cpp/rdataclass.h>
-#include <dns/cpp/rrttl.h>
+#include <dns/rdataclass.h>
+#include <dns/rrttl.h>
 
 #include "data_source_plot.h"
 

Modified: branches/parkinglot/src/bin/parkinglot/data_source_plot.h
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/data_source_plot.h (original)
+++ branches/parkinglot/src/bin/parkinglot/data_source_plot.h Tue Feb  2 15:33:55 2010
@@ -18,15 +18,15 @@
 #ifndef __DATA_SOURCE_SIMPLE_H
 #define __DATA_SOURCE_SIMPLE_H
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rdata.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrtype.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rdata.h>
+#include <dns/rrclass.h>
+#include <dns/rrtype.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "common.h"
 

Modified: branches/parkinglot/src/bin/parkinglot/main.cc
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/main.cc (original)
+++ branches/parkinglot/src/bin/parkinglot/main.cc Tue Feb  2 15:33:55 2010
@@ -25,14 +25,14 @@
 
 #include <boost/foreach.hpp>
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/session.h>
-#include <cc/cpp/data.h>
-#include <config/cpp/ccsession.h>
+#include <cc/session.h>
+#include <cc/data.h>
+#include <config/ccsession.h>
 
 #include "zoneset.h"
 #include "b10-parkinglot.h"

Modified: branches/parkinglot/src/bin/parkinglot/zoneset.h
==============================================================================
--- branches/parkinglot/src/bin/parkinglot/zoneset.h (original)
+++ branches/parkinglot/src/bin/parkinglot/zoneset.h Tue Feb  2 15:33:55 2010
@@ -18,8 +18,8 @@
 #define __ZONESET_H 1
 
 #include <set>
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
 
 class ZoneSet {
 public:

Modified: branches/parkinglot/src/lib/auth/cpp/Makefile.am
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/Makefile.am (original)
+++ branches/parkinglot/src/lib/auth/cpp/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext
+AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/ext
 
 CLEANFILES = *.gcno *.gcda
 

Modified: branches/parkinglot/src/lib/auth/cpp/data_source.cc
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source.cc (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source.cc Tue Feb  2 15:33:55 2010
@@ -1,9 +1,9 @@
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "data_source.h"
 

Modified: branches/parkinglot/src/lib/auth/cpp/data_source.h
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source.h (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source.h Tue Feb  2 15:33:55 2010
@@ -18,9 +18,9 @@
 #define __DATA_SOURCE_H
 
 #include <boost/foreach.hpp>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <auth/cpp/query.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <auth/query.h>
 
 namespace isc {
 namespace dns {

Modified: branches/parkinglot/src/lib/auth/cpp/data_source_plot.cc
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source_plot.cc (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source_plot.cc Tue Feb  2 15:33:55 2010
@@ -1,7 +1,7 @@
 
 #include <boost/foreach.hpp>
 
-#include <dns/cpp/rrttl.h>
+#include <dns/rrttl.h>
 
 #include "data_source_plot.h"
 

Modified: branches/parkinglot/src/lib/auth/cpp/data_source_plot.h
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source_plot.h (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source_plot.h Tue Feb  2 15:33:55 2010
@@ -18,15 +18,15 @@
 #ifndef __DATA_SOURCE_SIMPLE_H
 #define __DATA_SOURCE_SIMPLE_H
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rdata.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrtype.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rdata.h>
+#include <dns/rrclass.h>
+#include <dns/rrtype.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "common.h"
 

Modified: branches/parkinglot/src/lib/auth/cpp/data_source_static.cc
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/data_source_static.cc (original)
+++ branches/parkinglot/src/lib/auth/cpp/data_source_static.cc Tue Feb  2 15:33:55 2010
@@ -2,13 +2,13 @@
 
 #include "data_source_static.h"
 
-#include <dns/cpp/name.h>
-#include <dns/cpp/rdata.h>
-#include <dns/cpp/rdataclass.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/rrtype.h>
-#include <dns/cpp/rrttl.h>
+#include <dns/name.h>
+#include <dns/rdata.h>
+#include <dns/rdataclass.h>
+#include <dns/rrclass.h>
+#include <dns/rrset.h>
+#include <dns/rrtype.h>
+#include <dns/rrttl.h>
 
 #include <iostream>
 

Modified: branches/parkinglot/src/lib/auth/cpp/query.cc
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/query.cc (original)
+++ branches/parkinglot/src/lib/auth/cpp/query.cc Tue Feb  2 15:33:55 2010
@@ -14,12 +14,12 @@
 
 // $Id$
 
-#include <dns/cpp/buffer.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/message.h>
+#include <dns/buffer.h>
+#include <dns/name.h>
+#include <dns/rrset.h>
+#include <dns/message.h>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include "query.h"
 

Modified: branches/parkinglot/src/lib/auth/cpp/query.h
==============================================================================
--- branches/parkinglot/src/lib/auth/cpp/query.h (original)
+++ branches/parkinglot/src/lib/auth/cpp/query.h Tue Feb  2 15:33:55 2010
@@ -19,12 +19,12 @@
 
 #include <queue>
 
-#include <dns/cpp/exceptions.h>
-#include <dns/cpp/name.h>
-#include <dns/cpp/message.h>
-#include <dns/cpp/rrset.h>
-#include <dns/cpp/rrclass.h>
-#include <dns/cpp/rrtype.h>
+#include <dns/exceptions.h>
+#include <dns/name.h>
+#include <dns/message.h>
+#include <dns/rrset.h>
+#include <dns/rrclass.h>
+#include <dns/rrtype.h>
 
 namespace isc {
 namespace dns {

Modified: branches/parkinglot/src/lib/cc/cpp/Makefile.am
==============================================================================
--- branches/parkinglot/src/lib/cc/cpp/Makefile.am (original)
+++ branches/parkinglot/src/lib/cc/cpp/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext -Wall -Werror
+AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/ext -Wall -Werror
 
 lib_LIBRARIES = libcc.a
 libcc_a_SOURCES = data.cc data.h session.cc session.h

Modified: branches/parkinglot/src/lib/cc/cpp/data.h
==============================================================================
--- branches/parkinglot/src/lib/cc/cpp/data.h (original)
+++ branches/parkinglot/src/lib/cc/cpp/data.h Tue Feb  2 15:33:55 2010
@@ -22,7 +22,7 @@
 #include <map>
 #include <boost/shared_ptr.hpp>
 #include <stdexcept>
-#include <dns/cpp/exceptions.h>
+#include <dns/exceptions.h>
 
 namespace isc { namespace data {
 

Modified: branches/parkinglot/src/lib/config/cpp/Makefile.am
==============================================================================
--- branches/parkinglot/src/lib/config/cpp/Makefile.am (original)
+++ branches/parkinglot/src/lib/config/cpp/Makefile.am Tue Feb  2 15:33:55 2010
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_srcdir)/ext -Wall -Werror
+AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/ext -Wall -Werror
 
 lib_LIBRARIES = libclient.a
 libclient_a_SOURCES = data_def.h data_def.cc ccsession.cc ccsession.h

Modified: branches/parkinglot/src/lib/config/cpp/ccsession.cc
==============================================================================
--- branches/parkinglot/src/lib/config/cpp/ccsession.cc (original)
+++ branches/parkinglot/src/lib/config/cpp/ccsession.cc Tue Feb  2 15:33:55 2010
@@ -33,9 +33,9 @@
 
 #include <boost/foreach.hpp>
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 #include <data_def.h>
-#include <cc/cpp/session.h>
+#include <cc/session.h>
 
 //#include "common.h"
 #include "ccsession.h"

Modified: branches/parkinglot/src/lib/config/cpp/ccsession.h
==============================================================================
--- branches/parkinglot/src/lib/config/cpp/ccsession.h (original)
+++ branches/parkinglot/src/lib/config/cpp/ccsession.h Tue Feb  2 15:33:55 2010
@@ -19,9 +19,9 @@
 
 #include <string>
 
-#include <config/cpp/data_def.h>
-#include <cc/cpp/session.h>
-#include <cc/cpp/data.h>
+#include <config/data_def.h>
+#include <cc/session.h>
+#include <cc/data.h>
 
 class CommandSession {
 public:

Modified: branches/parkinglot/src/lib/config/cpp/data_def.h
==============================================================================
--- branches/parkinglot/src/lib/config/cpp/data_def.h (original)
+++ branches/parkinglot/src/lib/config/cpp/data_def.h Tue Feb  2 15:33:55 2010
@@ -1,7 +1,7 @@
 #ifndef _DATA_DEF_H
 #define _DATA_DEF_H 1
 
-#include <cc/cpp/data.h>
+#include <cc/data.h>
 
 #include <sstream>
 




More information about the bind10-changes mailing list