]> granicus.if.org Git - pdns/commitdiff
Don't look in system include paths for pdns headers
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 7 Oct 2014 20:34:59 +0000 (22:34 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 7 Oct 2014 20:34:59 +0000 (22:34 +0200)
25 files changed:
modules/db2backend/DB2Backend.cc
modules/geobackend/geobackend.cc
modules/geobackend/geobackend.hh
modules/ldapbackend/ldapbackend.hh
modules/ldapbackend/powerldap.cc
modules/ldapbackend/utils.hh
modules/lmdbbackend/lmdbbackend.cc
modules/lmdbbackend/lmdbbackend.hh
modules/mydnsbackend/mydnsbackend.cc
modules/opendbxbackend/odbxbackend.hh
modules/pipebackend/coprocess.cc
modules/pipebackend/pipebackend.cc
modules/remotebackend/test-remotebackend-http.cc
modules/remotebackend/test-remotebackend-json.cc
modules/remotebackend/test-remotebackend-pipe.cc
modules/remotebackend/test-remotebackend-post.cc
modules/remotebackend/test-remotebackend-unix.cc
modules/remotebackend/test-remotebackend-zeromq.cc
modules/remotebackend/test-remotebackend.cc
modules/remotebackend/unixconnector.cc
modules/tinydnsbackend/cdb.cc
modules/tinydnsbackend/cdb.hh
modules/tinydnsbackend/tinydnsbackend.cc
modules/tinydnsbackend/tinydnsbackend.hh
pdns/dnsbackend.cc

index 19cb3a5b96d5082d27ee70c8a0d0e40b1bee9e8d..5e1d2cca193a6ad4b12f47500a8715e8084f42ff 100644 (file)
@@ -7,13 +7,13 @@
 
 #include "pdns/namespaces.hh"
 
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 
 #include "DB2Exception.hh"
 #include "DB2Backend.hh"
index 287db2faced4e381fce2b1d31b15cccfac1775d7..e8cb8444b6eb1b45d96ce5eb8817171536153e3e 100644 (file)
@@ -15,9 +15,9 @@
 #include <unistd.h>
 #include <dirent.h>
 
-#include <pdns/misc.hh>
-#include <pdns/lock.hh>
-#include <pdns/dnspacket.hh>
+#include "pdns/misc.hh"
+#include "pdns/lock.hh"
+#include "pdns/dnspacket.hh"
 #include <boost/algorithm/string.hpp>
 #include "geobackend.hh"
 
index 2be48f52b3a5ec5a11f3ff8d535631eb6f4d1bf1..1ae58743849c2ec5506be72fba2d1913a98e0f7c 100644 (file)
@@ -10,8 +10,8 @@
 #include <map>
 #include <pthread.h>
 
-#include <pdns/dnsbackend.hh>
-#include <pdns/logger.hh>
+#include "pdns/dnsbackend.hh"
+#include "pdns/logger.hh"
 
 #include "ippreftree.hh"
 
index d563a8361d98bcf0ab6ef41fb026b33619378c73..b48b971a4fc4fee8358998cdbbbf0d3c3bd844d9 100644 (file)
 #include <cstdlib>
 #include <cctype>
 #include <inttypes.h>
-#include <pdns/dns.hh>
-#include <pdns/utility.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/arguments.hh>
-#include <pdns/logger.hh>
+#include "pdns/dns.hh"
+#include "pdns/utility.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/arguments.hh"
+#include "pdns/logger.hh"
 #include "powerldap.hh"
 #include "utils.hh"
 
index a0b84759fa4bf8c73bbc651fa6b970bb22906a5d..18006462a1b35a2c6cd938949d21d06ebc4fc1c0 100644 (file)
@@ -1,5 +1,5 @@
 #include "powerldap.hh"
-#include <pdns/misc.hh>
+#include "pdns/misc.hh"
 #include <sys/time.h>
 
 
index 25392c3d5480ef091b65eb19651b3fd6394ca294..b2b5eef7f01936d6e8e86566135bbac72d2ec151 100644 (file)
@@ -2,8 +2,8 @@
 #include <vector>
 #include <time.h>
 #include <stdlib.h>
-#include <pdns/misc.hh>
-#include <pdns/utility.hh>
+#include "pdns/misc.hh"
+#include "pdns/utility.hh"
 
 
 #ifndef LDAPBACKEND_UTILS_HH
index 92a21884010e042d1796769d86111dd051f0970b..e8a623310acc1704356f3bf3deac7dad96fd566b 100644 (file)
  * script which generates a simple zone.
  */
 
-#include <pdns/utility.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dns.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
+#include "pdns/utility.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dns.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
 #include <signal.h>
 #include "lmdbbackend.hh"
-#include <pdns/arguments.hh>
-#include <pdns/base32.hh>
-#include <pdns/lock.hh>
+#include "pdns/arguments.hh"
+#include "pdns/base32.hh"
+#include "pdns/lock.hh"
 
 #if 0
 #define DEBUGLOG(msg) L<<Logger::Error<<msg
index 5e14faf7c325fc11813ff1688d92406cf2f778dd..01f6ec82438dd3641eaa29f25e72650683310b25 100644 (file)
@@ -5,7 +5,7 @@
 
 #include <lmdb.h>
 #include <pthread.h>
-#include <pdns/dnsbackend.hh>
+#include "pdns/dnsbackend.hh"
 
 class LMDBBackend : public DNSReversedBackend
 {
index 579ac97d6eea1e0583910132a0363e2f46693cbb..0237d1f9fb4515e736dd93ee339d283c373bfe14 100644 (file)
 
 #include "pdns/namespaces.hh"
 
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
 #include "mydnsbackend.hh"
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 
 #include <modules/gmysqlbackend/smysql.hh>
 
index 56e4d0a8ece3c15a6dd5911035542d4788bedc65..831d62b5f6de8b2ae0725b69bacdc7141ab2c61f 100644 (file)
 #include <cstdlib>
 #include <sstream>
 #include <sys/time.h>
-#include <pdns/dns.hh>
-#include <pdns/utility.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/arguments.hh>
-#include <pdns/logger.hh>
+#include "pdns/dns.hh"
+#include "pdns/utility.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/arguments.hh"
+#include "pdns/logger.hh"
 #include <odbx.h>
 
 
index 5fa8121ab26ebbd38414338d86f0a7ff08a7ed31..ee1415f3700b16bfd98c9ff096114562489ae0c1 100644 (file)
@@ -8,8 +8,8 @@
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <sys/un.h>
-#include <pdns/misc.hh>
-#include <pdns/pdnsexception.hh>
+#include "pdns/misc.hh"
+#include "pdns/pdnsexception.hh"
 #include <sys/stat.h>
 #include <unistd.h>
 #include <boost/algorithm/string.hpp>
index 9f256d1c568ef757f513113475d51666538559cb..62ccd2e5d87acfd9ab80e68735e6246e4d511a28 100644 (file)
 
 #include "pdns/namespaces.hh"
 
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
index 134f79cfbca27cf2e3b3d3a1b80eff1299fd5258..4a84792e0333f0b7b7be19433bad1689d2162394 100644 (file)
@@ -1,11 +1,11 @@
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
 #include <rapidjson/document.h>
index dea9c50a100589d676c4c8f337c45f8720fb041d..402986e8fa8fd2fc5675b6fe8aca07c8ecb1256b 100644 (file)
@@ -1,11 +1,11 @@
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
 #include <rapidjson/document.h>
index 331c34e03aa57a0ecc38f89cb38c434d696dfd6e..687a4549971188e058bbc27b6f8b8da105b4f51c 100644 (file)
@@ -7,13 +7,13 @@
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include "pdns/dnsrecords.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
index 9ad294346fb3cb54702a9bf8c548923fa2cd9980..3f093ac4c0ec53e4a94f427ec93ed6c2682915ca 100644 (file)
@@ -1,11 +1,11 @@
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
 #include <rapidjson/document.h>
index 7ee948025fad4d54eba72a20434807d6074a3e68..ab30b4fd3dbb17d49e0e723e4be90978ea337716 100644 (file)
@@ -7,13 +7,13 @@
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include "pdns/dnsrecords.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
index 266ea19160f3a3c7cc508b0d2fa3d75ab1fac715..c06a54666185e692b8cf12cbdd0255552e09d1b3 100644 (file)
@@ -6,13 +6,13 @@
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include "pdns/dnsrecords.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
index 599091ad2fa387b32d6587f372ffb40ccc48baa2..a4009c6b870cd1d5593dee6d6e22ba0adb869ae0 100644 (file)
@@ -6,13 +6,13 @@
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
 #include "pdns/namespaces.hh"
-#include <pdns/dns.hh>
-#include <pdns/dnsbackend.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/ueberbackend.hh>
-#include <pdns/pdnsexception.hh>
-#include <pdns/logger.hh>
-#include <pdns/arguments.hh>
+#include "pdns/dns.hh"
+#include "pdns/dnsbackend.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/ueberbackend.hh"
+#include "pdns/pdnsexception.hh"
+#include "pdns/logger.hh"
+#include "pdns/arguments.hh"
 #include <boost/lexical_cast.hpp>
 #include <rapidjson/rapidjson.h>
 #include <rapidjson/document.h>
index f744462b23cffbc0289e2e00f5f07c58c7886802..1b9e05c431b2711233d9ff5e92930b31eb815a54 100644 (file)
@@ -1,6 +1,6 @@
 #include "remotebackend.hh"
 #include <sys/socket.h>
-#include <pdns/lock.hh> 
+#include "pdns/lock.hh" 
 #include <unistd.h>
 #include <fcntl.h>
 #ifndef UNIX_PATH_MAX 
index 5b674c647d48ca1ad3fb3973761e5517431bd79d..e67bea68bc76e199b297a8d27128ee3fb31ba062 100644 (file)
@@ -1,7 +1,7 @@
 #include "cdb.hh"
 #include <cdb.h>
-#include <pdns/misc.hh>
-#include <pdns/iputils.hh>
+#include "pdns/misc.hh"
+#include "pdns/iputils.hh"
 #include <utility>
 
 
index d758ac93ac6c61159a621e83aa38ea134db418b0..707e8bff5af80b4dd01edbabdacae947721f4a9f 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef CDB_HH
 #define CDB_HH
 
-#include <pdns/logger.hh>
+#include "pdns/logger.hh"
 #include <cdb.h>
 #include <sys/types.h>
 #include <sys/stat.h>
index db6e988e6fdd3745977892985aca64603abf805a..43e3d10c5590c075d61c8fbc011ee7c8e5150ca0 100644 (file)
@@ -1,10 +1,10 @@
 #include "tinydnsbackend.hh"
 #include "pdns/lock.hh"
 #include <cdb.h>
-#include <pdns/misc.hh>
-#include <pdns/iputils.hh>
-#include <pdns/dnspacket.hh>
-#include <pdns/dnsrecords.hh>
+#include "pdns/misc.hh"
+#include "pdns/iputils.hh"
+#include "pdns/dnspacket.hh"
+#include "pdns/dnsrecords.hh"
 #include <utility>
 #include <boost/foreach.hpp>
 
index 526b759fcffcb00dfc83be1a2624a628d325aca5..4dde2c29ac6990e0d2c16eceb40b51dee611f3e8 100644 (file)
@@ -1,16 +1,16 @@
 #ifndef TINYDNSBACKEND_HH
 #define TINYDNSBACKEND_HH
 
-#include <pdns/dnsbackend.hh>
-#include <pdns/logger.hh>
-#include <pdns/iputils.hh>
-#include <pdns/dnspacket.hh>
+#include "pdns/dnsbackend.hh"
+#include "pdns/logger.hh"
+#include "pdns/iputils.hh"
+#include "pdns/dnspacket.hh"
 #include <cdb.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include "cdb.hh"
-#include <pdns/lock.hh>
+#include "pdns/lock.hh"
 #include <boost/multi_index_container.hpp>
 #include <boost/multi_index/hashed_index.hpp>
 #include <boost/multi_index/member.hpp>
index e022edcdff0e1e8391502e7b3735238403c7f2ac..2eb0c67bcda91707642aa0e5b0fa061fe6d01bfc 100644 (file)
@@ -26,7 +26,7 @@
 #include "logger.hh"
 
 #include <sys/types.h>
-#include <pdns/packetcache.hh>
+#include "pdns/packetcache.hh"
 #include "dnspacket.hh"
 #include "dns.hh"