Author: djrzulf Date: Wed Feb 16 22:01:22 2005 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- from lists about problem on amd64,
---- Files affected:
SOURCES:
pdns-305.patch (NONE -> 1.1) (NEW), pdns-307.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/pdns-305.patch
diff -u /dev/null SOURCES/pdns-305.patch:1.1
--- /dev/null Wed Feb 16 23:01:22 2005
+++ SOURCES/pdns-305.patch Wed Feb 16 23:01:17 2005
@@ -0,0 +1,59 @@
+--- trunk/pdns/pdns/logger.cc (revision 304)
++++ trunk/pdns/pdns/logger.cc (revision 305)
+@@ -1,11 +1,10 @@
+ /*
+ PowerDNS Versatile Database Driven Nameserver
+- Copyright (C) 2002 PowerDNS.COM BV
++ Copyright (C) 2005 PowerDNS.COM BV
+
+ This program is free software; you can redistribute it and/or modify
+- it under the terms of the GNU General Public License as published by
+- the Free Software Foundation; either version 2 of the License, or
+- (at your option) any later version.
++ it under the terms of the GNU General Public License version 2 as
++ published by the Free Software Foundation
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+@@ -131,6 +130,16 @@
+ return *this;
+ }
+
++Logger& Logger::operator<<(unsigned long i)
++{
++ ostringstream tmp;
++ tmp<<i;
++
++ *this<<tmp.str();
++
++ return *this;
++}
++
+
+ Logger& Logger::operator<<(ostream & (&)(ostream &))
+ {
+--- trunk/pdns/pdns/logger.hh (revision 304)
++++ trunk/pdns/pdns/logger.hh (revision 305)
+@@ -1,11 +1,10 @@
+ /*
+ PowerDNS Versatile Database Driven Nameserver
+- Copyright (C) 2002 PowerDNS.COM BV
++ Copyright (C) 2005 PowerDNS.COM BV
+
+ This program is free software; you can redistribute it and/or modify
+- it under the terms of the GNU General Public License as published by
+- the Free Software Foundation; either version 2 of the License, or
+- (at your option) any later version.
++ it under the terms of the GNU General Public License version 2 as
++ published by the Free Software Foundation
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+@@ -111,6 +110,7 @@
+ Logger& operator<<(const string &s); //!< log a string
+ Logger& operator<<(int); //!< log an int
+ Logger& operator<<(unsigned int); //!< log an unsigned int
++ Logger& operator<<(unsigned long); //!< log an unsigned int
+ Logger& operator<<(Urgency); //!< set the urgency, << style
+
+ #ifndef WIN32
================================================================
Index: SOURCES/pdns-307.patch
diff -u /dev/null SOURCES/pdns-307.patch:1.1
--- /dev/null Wed Feb 16 23:01:22 2005
+++ SOURCES/pdns-307.patch Wed Feb 16 23:01:17 2005
@@ -0,0 +1,28 @@
+--- trunk/pdns/pdns/logger.cc (revision 306)
++++ trunk/pdns/pdns/logger.cc (revision 307)
+@@ -140,6 +140,15 @@
+ return *this;
+ }
+
++Logger& Logger::operator<<(long i)
++{
++ ostringstream tmp;
++ tmp<<i;
++
++ *this<<tmp.str();
++
++ return *this;
++}
+
+ Logger& Logger::operator<<(ostream & (&)(ostream &))
+ {
+--- trunk/pdns/pdns/logger.hh (revision 306)
++++ trunk/pdns/pdns/logger.hh (revision 307)
+@@ -110,6 +110,7 @@
+ Logger& operator<<(const string &s); //!< log a string
+ Logger& operator<<(int); //!< log an int
+ Logger& operator<<(unsigned int); //!< log an unsigned int
++ Logger& operator<<(long); //!< log an unsigned int
+ Logger& operator<<(unsigned long); //!< log an unsigned int
+ Logger& operator<<(Urgency); //!< set the urgency, << style
+
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit