diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-05-11 15:36:26 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-05-11 15:36:26 +0800 |
commit | 58ae6309f95afad1d6c44e1a46dca6d205ccf53e (patch) | |
tree | b9bb57956d79949bc44691889b550421fd99f947 /dns/powerdns/files | |
parent | 867c5d13e69104f4b1eeee15b9b42b37fb0dd1cd (diff) | |
download | freebsd-ports-gnome-58ae6309f95afad1d6c44e1a46dca6d205ccf53e.tar.gz freebsd-ports-gnome-58ae6309f95afad1d6c44e1a46dca6d205ccf53e.tar.zst freebsd-ports-gnome-58ae6309f95afad1d6c44e1a46dca6d205ccf53e.zip |
- update to 2.9.8
- recursor defaults off, Option POWERDNS_WITH_RECURSOR
Diffstat (limited to 'dns/powerdns/files')
4 files changed, 5 insertions, 31 deletions
diff --git a/dns/powerdns/files/patch-modules_gmysqlbackend_gmysqlbackend_cc b/dns/powerdns/files/patch-modules_gmysqlbackend_gmysqlbackend_cc index 300ff8a3b445..bdee751a913b 100644 --- a/dns/powerdns/files/patch-modules_gmysqlbackend_gmysqlbackend_cc +++ b/dns/powerdns/files/patch-modules_gmysqlbackend_gmysqlbackend_cc @@ -1,6 +1,6 @@ ---- modules/gmysqlbackend/gmysqlbackend.cc.orig Tue Dec 17 10:56:43 2002 -+++ modules/gmysqlbackend/gmysqlbackend.cc Tue Dec 17 11:01:33 2002 -@@ -20,13 +20,14 @@ +--- modules/gmysqlbackend/gmysqlbackend.cc.orig Thu Feb 27 13:49:37 2003 ++++ modules/gmysqlbackend/gmysqlbackend.cc Sun May 11 08:49:16 2003 +@@ -20,14 +20,14 @@ gMySQLBackend::gMySQLBackend(const string &mode, const string &suffix) : GSQLBackend(mode,suffix) { @@ -13,6 +13,7 @@ try { - setDB(new SMySQL(getArg("dbname"), - getArg("host"), +- getArg("port"), - getArg("socket"), - getArg("user"), - getArg("password"))); diff --git a/dns/powerdns/files/patch-modules_ldapbackend_powerldap.cc b/dns/powerdns/files/patch-modules_ldapbackend_powerldap.cc index 4cc027918def..27faef6f3c45 100644 --- a/dns/powerdns/files/patch-modules_ldapbackend_powerldap.cc +++ b/dns/powerdns/files/patch-modules_ldapbackend_powerldap.cc @@ -5,7 +5,7 @@ #include <map> #include <vector> -- #include <crypt.h> +- // #include <crypt.h> #include <exception> #include <stdexcept> #include <string> diff --git a/dns/powerdns/files/patch-modules_ldapbackend_powerldap.hh b/dns/powerdns/files/patch-modules_ldapbackend_powerldap.hh deleted file mode 100644 index b73538245123..000000000000 --- a/dns/powerdns/files/patch-modules_ldapbackend_powerldap.hh +++ /dev/null @@ -1,12 +0,0 @@ -*** modules/ldapbackend/powerldap.hh.orig Thu Mar 13 20:49:33 2003 ---- modules/ldapbackend/powerldap.hh Thu Mar 13 20:49:50 2003 -*************** -*** 2,8 **** - #define POWERLDAP_HH - #include <map> - #include <vector> -- #include <crypt.h> - #include <exception> - #include <stdexcept> - #include <string> ---- 2,7 ---- diff --git a/dns/powerdns/files/patch-pdns_common_startup_cc b/dns/powerdns/files/patch-pdns_common_startup_cc deleted file mode 100644 index 939539a58a66..000000000000 --- a/dns/powerdns/files/patch-pdns_common_startup_cc +++ /dev/null @@ -1,15 +0,0 @@ ---- pdns/common_startup.cc.orig Tue Dec 17 08:18:41 2002 -+++ pdns/common_startup.cc Tue Dec 17 08:19:58 2002 -@@ -270,8 +270,10 @@ - TN->go(); // tcp nameserver launch - - // fork(); (this worked :-)) -- for(int n=0;n<arg().asNum("receiver-threads");++n) { -- DNSDistributor *D= new DNSDistributor(arg().asNum("distributor-threads")); // the big dispatcher! -+ int foo1 = arg().asNum("receiver-threads"); -+ for(int n=0;n<foo1;++n) { -+ int foo2 = arg().asNum("distributor-threads"); -+ DNSDistributor *D= new DNSDistributor(foo2); // the big dispatcher! - pthread_create(&qtid,0,qthread,static_cast<void *>(D)); // receives packets - } - |