[-]
[+]
|
Changed |
pdns-recursor.spec
|
|
[-]
[+]
|
Added |
pdns-recursor-3.1.7.2-strip.patch
^
|
@@ -0,0 +1,13 @@
+--- Makefile
++++ Makefile
+@@ -54,10 +54,8 @@
+ install: all
+ -mkdir -p $(DESTDIR)/$(SBINDIR)
+ mv pdns_recursor $(DESTDIR)/$(SBINDIR)
+- strip $(DESTDIR)/$(SBINDIR)/pdns_recursor
+ mkdir -p $(DESTDIR)/$(BINDIR)
+ mv rec_control $(DESTDIR)/$(BINDIR)
+- strip $(DESTDIR)/$(BINDIR)/rec_control
+ -mkdir -p $(DESTDIR)/$(CONFIGDIR)
+ $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist
+ -mkdir -p $(DESTDIR)/usr/share/man/man1
|
[-]
[+]
|
Added |
pdns-recursor-3.1.7.2_atomicity.patch
^
|
@@ -0,0 +1,24 @@
+Index: recursor_cache.cc
+===================================================================
+--- recursor_cache.cc.orig 2006-11-12 17:56:13.000000000 +0100
++++ recursor_cache.cc 2007-02-27 21:44:27.347571093 +0100
+@@ -9,9 +9,17 @@ using namespace std;
+ using namespace boost;
+
+ #include "config.h"
+-
+-#ifdef GCC_SKIP_LOCKING
++#if !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && defined(GCC_SKIP_LOCKING)
++#warning "using the optimized locking code on older gcc"
++#if HAVE_BITS_ATOMICITY_H
+ #include <bits/atomicity.h>
++#endif
++/*
++this is just a reminder. in gcc 4.2 it seems atomicity.h was moved under ext/
++#if HAVE_EXT_ATOMICITY_H
++#include <ext/atomicity.h>
++#endif
++*/
+ // This code is ugly but does speedup the recursor tremendously on multi-processor systems, and even has a large effect (20, 30%) on uniprocessor
+ namespace __gnu_cxx
+ {
|
[-]
[+]
|
Added |
pdns-recursor-3.1.7.2_config.patch
^
|
@@ -0,0 +1,10 @@
+--- config.h.orig 2009-08-02 22:22:51.000000000 +0200
++++ config.h 2009-08-03 09:16:59.000000000 +0200
+@@ -1,5 +1,5 @@
+-#define SYSCONFDIR "/etc/powerdns/"
+-#define LOCALSTATEDIR "/var/run/"
++#define SYSCONFDIR "/etc/pdns/"
++#define LOCALSTATEDIR "/var/run/pdns/"
+ #define VERSION "3.1.7.2"
+ #define RECURSOR
+ #ifndef WIN32
|
|
Added |
pdns-recursor-3.1.7.2.tar.bz2
^
|