fix: populate ldns submodule and add autotools to LDNS build stage

- Re-cloned zonemaster-ldns with --recurse-submodules so the bundled
  ldns C library source (including Changelog and configure.ac) is present
- Added autoconf, automake, libtool to Dockerfile.backend ldns-build stage
  so libtoolize + autoreconf can generate ldns/configure during make

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 08:33:38 +02:00
parent 8d4eaa1489
commit eaaa8f6a11
541 changed files with 138189 additions and 0 deletions

View File

@@ -0,0 +1 @@
com. 14400 IN NAPTR 100 10 S SIP+D2U "!^.*$!sip:customer-service@example.com!" com.

View File

@@ -0,0 +1,16 @@
BaseName: 28-tab-instead-of-space
Version: 1.0
Description: Check for GH 157 regression
CreationDate: Tue Mar 15 21:01:34 EST 2022
Maintainer:
Category:
Component:
CmdDepends:
Depends:
Help: 28-tab-instead-of-space.help
Pre:
Post:
Test: 28-tab-instead-of-space.test
AuxFiles:
Passed:
Failure:

View File

@@ -0,0 +1 @@
This requires no arguments.

View File

@@ -0,0 +1,15 @@
# #-- 28-tab-instead-of-space.test --#
# source the master var file when it's there
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
export PATH=$PATH:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:.
export LD_LIBRARY_PATH=../../lib:$LD_LIBRARY_PATH
OUTPUT=`../../examples/ldns-read-zone 28-tab-instead-of-space.db`
if [[ $? -eq 0 ]]; then
echo $OUTPUT | grep customer-service
else
exit 1
fi