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,23 @@
;
; BIND data file for miek.nl for internal use
;
$TTL 1H
@ IN SOA elektron.atoom.net. miekg.atoom.net. (
2005060700 ; Serial
6H ; Refresh
2H ; Retry
7D ; Expire
1H ) ; Negative Cache TTL
@ IN NS elektron.atoom.net.
@ IN MX 10 elektron.atoom.net.
@ IN A 192.168.1.2
a IN A 192.168.1.2
www IN CNAME a
; hallo
;
www in A 127.0.0.1
; bla

View File

@@ -0,0 +1,15 @@
BaseName: 14-read-zone
Version: 1.0
Description: read a zone with comment on the last line
CreationDate: Thu Apr 6 10:50:19 CEST 2006
Maintainer: Miek Gieben
Category:
Component:
Depends:
Help: 14-read-zone.help
Pre:
Post:
Test: 14-read-zone.test
AuxFiles: 14-read-zone.db
Passed:
Failure:

View File

@@ -0,0 +1 @@
No arguments are needed

View File

@@ -0,0 +1,12 @@
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
export PATH=$PATH:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:.
LD_LIBRARY_PATH=../../lib:$LD_LIBRARY_PATH \
../../examples/ldns-read-zone 14-read-zone.db
if [[ $? -eq 0 ]]; then
exit 0
else
exit 1
fi