* [git.ipfire.org] IPFire 3.x development tree branch, master, updated. ba06a041367a72f45224056d5495292cfde055d4
@ 2014-06-13 14:07 git
0 siblings, 0 replies; only message in thread
From: git @ 2014-06-13 14:07 UTC (permalink / raw)
To: ipfire-scm
[-- Attachment #1: Type: text/plain, Size: 7893 bytes --]
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 3.x development tree".
The branch, master has been updated
via ba06a041367a72f45224056d5495292cfde055d4 (commit)
via 3e486aa43f9b498db4727ea60a570ff2344360fd (commit)
from a25e16d7e0d7ebd3431dcd8b816571704ef38b22 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ba06a041367a72f45224056d5495292cfde055d4
Merge: a25e16d 3e486aa
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Fri Jun 13 16:07:18 2014 +0200
Merge remote-tracking branch 'ms/pdns'
commit 3e486aa43f9b498db4727ea60a570ff2344360fd
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Fri May 30 15:48:23 2014 +0000
pdns: Update to 3.3.1.
-----------------------------------------------------------------------
Summary of changes:
pdns/patches/pdns-3.1-use-system-polarssl.patch | 132 ------------------------
pdns/pdns.nm | 12 +--
2 files changed, 4 insertions(+), 140 deletions(-)
delete mode 100644 pdns/patches/pdns-3.1-use-system-polarssl.patch
Difference in files:
diff --git a/pdns/patches/pdns-3.1-use-system-polarssl.patch b/pdns/patches/pdns-3.1-use-system-polarssl.patch
deleted file mode 100644
index 66644f4..0000000
--- a/pdns/patches/pdns-3.1-use-system-polarssl.patch
+++ /dev/null
@@ -1,132 +0,0 @@
-diff -Nur a/configure.ac b/configure.ac
---- a/configure.ac 2012-05-04 12:13:23.000000000 +0200
-+++ b/configure.ac 2012-10-13 17:10:49.686258971 +0200
-@@ -162,6 +162,32 @@
- fi
- AC_MSG_RESULT($enable_verbose_logging)
-
-+AC_MSG_CHECKING(whether we will try to link in system PolarSSL)
-+AC_ARG_WITH([system-polarssl],
-+ [AC_HELP_STRING([--without-system-polarssl], [Do not use system PolarSSL])],
-+ [system_polarssl=$withval],
-+ [system_polarssl=yes])
-+AC_MSG_RESULT($system_polarssl)
-+AM_CONDITIONAL(HAVE_LIBPOLARSSL, false)
-+if test x$system_polarssl = xyes; then
-+ AC_MSG_CHECKING([PolarSSL version >= 1.1])
-+ AC_COMPILE_IFELSE(
-+ [AC_LANG_PROGRAM(
-+ [[
-+#include <polarssl/version.h>
-+ ]],
-+ [[
-+#if POLARSSL_VERSION_MAJOR < 1 || (POLARSSL_VERSION_MAJOR == 1 && POLARSSL_VERSION_MINOR < 1)
-+#error invalid version
-+#endif
-+ ]]
-+ )], [use_system_polarssl=yes], [use_system_polarssl=no])
-+ AC_MSG_RESULT($use_system_polarssl)
-+fi
-+if test x$use_system_polarssl = xyes; then
-+ AC_CHECK_LIB([polarssl], [sha1_hmac])
-+fi
-+
- AC_MSG_CHECKING(whether we will be linking in Botan 1.10)
- AC_ARG_ENABLE(botan1.10,
- [ --enable-botan1.10 Use Botan 1.10],enable_botan110=yes, enable_botan110=no)
-diff -Nur a/pdns/Makefile.am b/pdns/Makefile.am
---- a/pdns/Makefile.am 2012-05-04 12:13:23.000000000 +0200
-+++ b/pdns/Makefile.am 2012-10-13 17:11:56.293629151 +0200
-@@ -1,4 +1,8 @@
--AM_CXXFLAGS=-DSYSCONFDIR=\"@sysconfdir@\" -DLIBDIR=\"@libdir@\" -DLOCALSTATEDIR=\"@socketdir@\" -Ibackends/bind @THREADFLAGS@ $(LUA_CFLAGS) $(SQLITE3_CFLAGS) -Iext/polarssl-1.1.2/include
-+if HAVE_LIBPOLARSSL
-+AM_CXXFLAGS=-DSYSCONFDIR=\"@sysconfdir@\" -DLIBDIR=\"@libdir@\" -DLOCALSTATEDIR=\"@socketdir@\" -Ibackends/bind @THREADFLAGS@ $(LUA_CFLAGS) $(SQLITE3_CFLAGS) -DPDNS_ENABLE_LUA
-+else
-+AM_CXXFLAGS=-DSYSCONFDIR=\"@sysconfdir@\" -DLIBDIR=\"@libdir@\" -DLOCALSTATEDIR=\"@socketdir@\" -Ibackends/bind @THREADFLAGS@ $(LUA_CFLAGS) $(SQLITE3_CFLAGS) -Iext/polarssl-1.1.2/include -DPDNS_ENABLE_LUA
-+endif
- AM_CPPFLAGS=-Ibackends/bind $(BOOST_CPPFLAGS) @THREADFLAGS@
-
- EXTRA_DIST = dnslabeltext.rl dnslabeltext.cc mtasker.cc inflighter.cc docs/pdns_control.8 \
-@@ -7,7 +11,11 @@
- no-dnssec.schema.mysql.sql no-dnssec.schema.pgsql.sql no-dnssec.schema.sqlite3.sql \
- bind-dnssec.schema.sqlite3.sql
-
-+if HAVE_LIBPOLARSSL
-+SUBDIRS= backends
-+else
- SUBDIRS= ext/polarssl-1.1.2 backends
-+endif
-
- BUILT_SOURCES=bind-dnssec.schema.sqlite3.sql.h
-
-@@ -130,7 +138,11 @@
- aes/aescrypt.c aes/aes.h aes/aeskey.c aes/aes_modes.c aes/aesopt.h \
- aes/aestab.c aes/aestab.h aes/brg_endian.h aes/brg_types.h aes/dns_random.cc \
- randomhelper.cc dns.cc
-+if HAVE_LIBPOLARSSL
-+tsig_tests_LDFLAGS=
-+else
- tsig_tests_LDFLAGS= -Lext/polarssl-1.1.2/library
-+endif
- tsig_tests_LDADD= -lpolarssl
-
-
-diff -Nur a/pdns/backends/bind/Makefile.am b/pdns/backends/bind/Makefile.am
---- a/pdns/backends/bind/Makefile.am 2012-05-04 12:13:23.000000000 +0200
-+++ b/pdns/backends/bind/Makefile.am 2012-10-13 17:10:49.691259001 +0200
-@@ -34,10 +34,18 @@
- ../../nsecrecords.cc ../../dnssecinfra.cc ../../base32.cc ../../md5.cc # ../../dbdnsseckeeper.cc
-
- zone2ldap_LDFLAGS=@THREADFLAGS@
-+if HAVE_LIBPOLARSSL
-+zone2ldap_LDADD=
-+else
- zone2ldap_LDADD= ../../ext/polarssl-1.1.2/library/libpolarssl.a
-+endif
-
- zone2sql_LDFLAGS=@THREADFLAGS@
-+if HAVE_LIBPOLARSSL
-+zone2sql_LDADD=
-+else
- zone2sql_LDADD= ../../ext/polarssl-1.1.2/library/libpolarssl.a
-+endif
-
- AM_LFLAGS = -s -i
- AM_YFLAGS = -d --verbose --debug
-diff -Nur a/pdns/dnssecinfra.cc b/pdns/dnssecinfra.cc
---- a/pdns/dnssecinfra.cc 2012-05-04 12:13:23.000000000 +0200
-+++ b/pdns/dnssecinfra.cc 2012-10-13 17:10:49.690258995 +0200
-@@ -9,7 +9,11 @@
- #include <boost/algorithm/string.hpp>
- #include "dnssecinfra.hh"
- #include "dnsseckeeper.hh"
-+#ifdef HAVE_LIBPOLARSSL
-+#include <polarssl/sha1.h>
-+#else
- #include "ext/polarssl-1.1.2/include/polarssl/sha1.h"
-+#endif
- #include <boost/assign/std/vector.hpp> // for 'operator+=()'
- #include <boost/assign/list_inserter.hpp>
- #include "base64.hh"
-diff -Nur a/pdns/polarrsakeyinfra.cc b/pdns/polarrsakeyinfra.cc
---- a/pdns/polarrsakeyinfra.cc 2012-05-04 12:13:23.000000000 +0200
-+++ b/pdns/polarrsakeyinfra.cc 2012-10-13 17:10:49.689258989 +0200
-@@ -1,9 +1,18 @@
-+#ifdef HAVE_LIBPOLARSSLSSL
-+#include <polarssl/rsa.h>
-+#include <polarssl/base64.h>
-+#include <polarssl/sha1.h>
-+#include <polarssl/sha2.h>
-+#include <polarssl/sha4.h>
-+#include <polarssl/havege.h>
-+#else
- #include "ext/polarssl-1.1.2/include/polarssl/rsa.h"
- #include "ext/polarssl-1.1.2/include/polarssl/base64.h"
- #include "ext/polarssl-1.1.2/include/polarssl/sha1.h"
- #include "ext/polarssl-1.1.2/include/polarssl/sha2.h"
- #include "ext/polarssl-1.1.2/include/polarssl/sha4.h"
- #include "ext/polarssl-1.1.2/include/polarssl/havege.h"
-+#endif
- #include <boost/assign/std/vector.hpp> // for 'operator+=()'
- #include <boost/foreach.hpp>
- #include "dnssecinfra.hh"
diff --git a/pdns/pdns.nm b/pdns/pdns.nm
index 5c01ec1..7d27149 100644
--- a/pdns/pdns.nm
+++ b/pdns/pdns.nm
@@ -4,8 +4,8 @@
###############################################################################
name = pdns
-version = 3.1
-release = 5
+version = 3.3.1
+release = 1
groups = Networking/DNS
url = http://powerdns.com/
@@ -23,12 +23,9 @@ source_dl = http://downloads.powerdns.com/releases/
build
requires
- autoconf
- automake
boost-devel
chrpath
gcc-c++
- libtool
lua-devel
polarssl-devel
shadow-utils
@@ -42,15 +39,14 @@ build
configure_options += \
--sysconfdir=%{sysconfdir}/pdns \
--libdir=%{libdir}/powerdns \
+ --with-system-polarssl \
--with-modules="" \
--with-dynmodules="pipe geo gsqlite3" \
--with-lua \
+ --enable-tools \
--disable-static
prepare_cmds
- # Regenerate build system.
- autoreconf -vfi
-
%{create_user}
end
hooks/post-receive
--
IPFire 3.x development tree
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-06-13 14:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-13 14:07 [git.ipfire.org] IPFire 3.x development tree branch, master, updated. ba06a041367a72f45224056d5495292cfde055d4 git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox