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 @@
foo 12345 IN HINFO "hohum" "weirdo"

View File

@@ -0,0 +1,16 @@
BaseName: 27-tab-between-cstrings
Version: 1.0
Description: Check for GH 147 regression
CreationDate: Thu Dec 9 12:04:34 EST 2021
Maintainer:
Category:
Component:
CmdDepends:
Depends:
Help: 27-tab-between-cstrings.help
Pre:
Post:
Test: 27-tab-between-cstrings.test
AuxFiles:
Passed:
Failure:

View File

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

View File

@@ -0,0 +1,15 @@
# #-- 27-tab-between-cstrings.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 27-tab-between-cstrings.db`
if [[ $? -eq 0 ]]; then
echo $OUTPUT | grep weirdo
else
exit 1
fi