Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
104
Merge Requests
104
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
b4eb8b96
Commit
b4eb8b96
authored
Aug 31, 2017
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
4696. [port] Enable filter-aaaa support by default on Windows
builds. [RT #45883]
parent
2e743d9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
CHANGES
CHANGES
+3
-0
win32utils/Configure
win32utils/Configure
+4
-4
No files found.
CHANGES
View file @
b4eb8b96
4696. [port] Enable filter-aaaa support by default on Windows
builds. [RT #45883]
4695. [bug] cookie-secrets were not being properly checked by
named-checkconf. [RT #45886]
...
...
win32utils/Configure
View file @
b4eb8b96
...
...
@@ -620,7 +620,7 @@ my @help = (
"
enable-native-pkcs11 use native PKCS#11 for all crypto [default=no]
\n
",
"
enable-openssl-hash use OpenSSL for hash functions [default=yes]
\n
",
"
enable-isc-spnego use SPNEGO from lib/dns [default=yes]
\n
",
"
enable-filter-aaaa enable filtering of AAAA records [default=
no
]
\n
",
"
enable-filter-aaaa enable filtering of AAAA records [default=
yes
]
\n
",
"
enable-fixed-rrset enable fixed rrset ordering [default=no]
\n
",
"
enable-developer enable developer build settings [default=no]
\n
",
"
enable-querytrace enable very verbose query trace [default=no]
\n
",
...
...
@@ -663,7 +663,7 @@ my $unknown_value;
my
$enable_intrinsics
=
"
yes
";
my
$enable_native_pkcs11
=
"
no
";
my
$enable_openssl_hash
=
"
auto
";
my
$enable_filter_aaaa
=
"
no
";
my
$enable_filter_aaaa
=
"
yes
";
my
$enable_isc_spnego
=
"
yes
";
my
$enable_fixed_rrset
=
"
no
";
my
$enable_developer
=
"
no
";
...
...
@@ -881,8 +881,8 @@ sub myenable {
$enable_isc_spnego
=
"
no
";
}
}
elsif
(
$key
=~
/^filter-aaaa$/i
)
{
if
(
$val
=~
/^
yes
$/i
)
{
$enable_filter_aaaa
=
"
yes
";
if
(
$val
=~
/^
no
$/i
)
{
$enable_filter_aaaa
=
"
no
";
}
}
elsif
(
$key
=~
/^fixed-rrset$/i
)
{
if
(
$val
=~
/^yes$/i
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment