pkgsrc/net/powerdns/patches/patch-configure
adam c7a2b4319d powerdns: updated to 4.2.1
4.2.1
This release fixes several bugs and makes a few features more robust or intuitive. It also contains a few performance improvements for API users.

New Features
Add SLAVE-RENOTIFY zone metadata support
Add configurable timeout for inbound AXFR
Add CentOS 8 as builder target
gmysql backend, add an option to send the SSL capability flag

Improvements
API: reduce number of database connections
Register a few known RR types and remove an unknown one
bindbackend: use metadata for also-notifies as well
pdnsutil increase-serial: under SOA-EDIT=INCEPTION-EPOCH, bump as if it is EPOCH
API: optionally do not return dnssec info in domain list
Basic validation of $GENERATE parameters

Bug Fixes
LUA view: do not crash on empty IP list
API: Accept headers without spaces
Avoid database state-related SERVFAILs after a LUA error
Just before 4.2.0, some SQL-related fixes broke edit-zone and other features with the LMDB backend. This has been fixed now.
rfc2136, pdnsutil: somewhat improve duplicate record handling


4.2.0
Compared to the last release candidate, one more bug has been fixed.

The LMDB backend is incomplete in this version. Slaving zones works, loading zones with pdnsutil works, but more fine grained edits (using edit-zone, or the REST API) fail. We hope to fix this soon in a 4.2.x release.

For an overview of features new since 4.1.x, please see the 4.2.0 announcement blog post.

Bug Fixes
bind getAllDomains: ignore per-zone exceptions
2020-03-17 19:04:49 +00:00

45 lines
1.5 KiB
Text

$NetBSD: patch-configure,v 1.9 2020/03/17 19:04:49 adam Exp $
Do not add default compiler flags.
Leave pkgsrc to handle security features.
--- configure.orig 2019-11-29 19:23:06.000000000 +0000
+++ configure
@@ -3721,8 +3721,8 @@ case $host_os in *\ *) host_os=`echo "$h
# Add some default CFLAGS and CXXFLAGS, can be appended to using the environment variables
-CFLAGS="-Wall -g -O2 $CFLAGS"
-CXXFLAGS="-Wall -g -O2 $CXXFLAGS"
+CFLAGS="-Wall $CFLAGS"
+CXXFLAGS="-Wall $CXXFLAGS"
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
@@ -7884,7 +7884,7 @@ rm -f core conftest.err conftest.$ac_obj
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_cxx__fstack_protector" >&5
$as_echo "$gl_cv_warn_cxx__fstack_protector" >&6; }
-if test "x$gl_cv_warn_cxx__fstack_protector" = xyes; then :
+if test "x$gl_cv_warn_cxx__fstack_protector" = xDISABLED; then :
CFLAGS="-fstack-protector $CFLAGS"
CXXFLAGS="-fstack-protector $CXXFLAGS"
@@ -22723,7 +22723,7 @@ fi
if test "x$PG_CONFIG" != "x" -o "x$PGSQL_LIBS" = "x"; then :
- if test "x$PG_CONFIG" == "x"; then :
+ if test "x$PG_CONFIG" = "x"; then :
# Extract the first word of "pg_config", so it can be a program name with args.
set dummy pg_config; ac_word=$2
@@ -22767,7 +22767,7 @@ fi
fi
- if test "x$PG_CONFIG" == "x"; then :
+ if test "x$PG_CONFIG" = "x"; then :
as_fn_error $? "Can not find pg_config, use --with-pg-config to specify the path to pg_config" "$LINENO" 5