[-]
[+]
|
Added |
pdns-recursor.changes
|
|
[-]
[+]
|
Changed |
pdns-recursor.spec
^
|
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.5-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.5_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-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
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.5_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -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.5"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-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
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.6_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -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.6"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7-makefile.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile.orig 2008-06-28 14:43:11.000000000 +0200
-+++ Makefile 2008-06-28 14:43:58.000000000 +0200
-@@ -42,7 +42,9 @@
- STATICFLAGS=-Wl,-Bstatic -lstdc++ $(LUALIBS) -lgcc -Wl,-Bdynamic -static-libgcc -lm -lc
- LINKCC=$(CC)
- LDFLAGS += malloc.o -ldl -lm
--else ifeq ($(STATIC),full)
-+endif
-+
-+ifeq ($(STATIC),full)
- STATICFLAGS=-lstdc++ $(LUALIBS) -ldl -lm -static
- LINKCC=$(CC)
- else
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1-makefile.patch
^
|
@@ -1,13 +0,0 @@
---- Makefile.orig 2008-06-28 14:43:11.000000000 +0200
-+++ Makefile 2008-06-28 14:43:58.000000000 +0200
-@@ -42,7 +42,9 @@
- STATICFLAGS=-Wl,-Bstatic -lstdc++ $(LUALIBS) -lgcc -Wl,-Bdynamic -static-libgcc -lm -lc
- LINKCC=$(CC)
- LDFLAGS += malloc.o -ldl -lm
--else ifeq ($(STATIC),full)
-+endif
-+
-+ifeq ($(STATIC),full)
- STATICFLAGS=-lstdc++ $(LUALIBS) -ldl -lm -static
- LINKCC=$(CC)
- else
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-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
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.1_config.patch
^
|
@@ -1,10 +0,0 @@
---- 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.1"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-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
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7.2_config.patch
^
|
@@ -1,10 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7_atomicity.patch
^
|
@@ -1,24 +0,0 @@
-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
- {
|
[-]
[+]
|
Deleted |
pdns-recursor-3.1.7_config.patch
^
|
@@ -1,12 +0,0 @@
-Index: config.h
-===================================================================
---- config.h.orig
-+++ config.h
-@@ -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"
- #define RECURSOR
- #ifndef WIN32
|
[-]
[+]
|
Deleted |
pdns-recursor-3.2-strip.patch
^
|
@@ -1,13 +0,0 @@
---- 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
|
[-]
[+]
|
Deleted |
pdns-recursor-3.2_config.patch
^
|
@@ -1,9 +0,0 @@
---- config.h.orig 2010-03-06 13:10:44.000000000 +0100
-+++ config.h 2010-03-08 07:04:56.000000000 +0100
-@@ -1,4 +1,4 @@
--#define SYSCONFDIR "/etc/powerdns/"
--#define LOCALSTATEDIR "/var/run/"
-+#define SYSCONFDIR "/etc/pdns/"
-+#define LOCALSTATEDIR "/var/run/pdns"
- #define VERSION "3.2"
- #define RECURSOR
|
[-]
[+]
|
Added |
pdns-recursor-3.3-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.3_config.patch
^
|
@@ -0,0 +1,9 @@
+--- config.h.orig 2010-03-06 13:10:44.000000000 +0100
++++ config.h 2010-03-08 07:04:56.000000000 +0100
+@@ -1,4 +1,4 @@
+-#define SYSCONFDIR "/etc/powerdns/"
+-#define LOCALSTATEDIR "/var/run/"
++#define SYSCONFDIR "/etc/pdns/"
++#define LOCALSTATEDIR "/var/run/pdns"
+ #define VERSION "3.2"
+ #define RECURSOR
|
[-]
[+]
|
Added |
pdns-recursor-init-rh.patch
^
|
@@ -0,0 +1,38 @@
+--- pdns-recursor.init.d.orig 2011-01-20 23:58:11.527523104 +0100
++++ pdns-recursor.init.d 2011-01-20 23:59:08.827170729 +0100
+@@ -13,7 +13,7 @@
+
+ doPC()
+ {
+- ret=`$BINARYPATH/rec_control $EXTRAOPTS $1 $2 2> /dev/null`
++ ret=`$SBINARYPATH/rec_control $EXTRAOPTS $1 $2 2> /dev/null`
+ }
+
+
+@@ -22,7 +22,7 @@
+
+ case "$1" in
+ status)
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ echo "running"
+ else
+@@ -32,7 +32,7 @@
+
+ stop)
+ echo -n "Stopping PowerDNS recursing nameserver: "
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ doPC quit
+ echo $ret
+@@ -50,7 +50,7 @@
+
+ start)
+ echo -n "Starting PowerDNS recursing nameserver: "
+- if test "$NOTRUNNING" = "0"
++ if [ "$NOTRUNNING" == "0" ]
+ then
+ echo "already running"
+ else
|
|
Added |
boost_1_39_0.tar.bz2
^
|
|
Deleted |
pdns-recursor-3.1.6.tar.bz2
^
|
|
Deleted |
pdns-recursor-3.1.7.1.tar.bz2
^
|
|
Deleted |
pdns-recursor-3.1.7.2.tar.bz2
^
|
|
Deleted |
pdns-recursor-3.1.7.tar.bz2
^
|
|
Deleted |
pdns-recursor-3.2.tar.bz2
^
|
|
Changed |
pdns-recursor-3.3.tar.bz2
^
|