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,15 @@
BaseName: test3
Version: 1.0
Description: Test negative SOA TTL, added to test BUG #6
CreationDate: Thu Oct 27 11:57:07 CEST 2005
Maintainer: Miek Gieben
Category:
Component:
Depends:
Help:
Pre: test3.pre
Post: test3.post
Test: test3.test
AuxFiles: test3.querygood
Passed: "matched"
Failure:

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "He! Ruim toch eens een keer je troep op!"

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Dit script word vooraf uitgevoerd"

View File

@@ -0,0 +1 @@
elektron.atoom.net.3600INAAAA2001:7b8:32a:0:280:48ff:feb3:26eb

View File

@@ -0,0 +1,10 @@
#!/bin/sh
dig miek.nl | grep AAAA | sed 's/[ \t]*//g' > $$.digout
diff -u test3.querygood $$.digout
if [ $? -ne 0 ]; then
echo "Query failed"
else
echo "Query matched"
fi
rm -f $$.digout