Files
zonemaster.es/zonemaster-ldns/ldns/linktest.c
Malin eaaa8f6a11 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>
2026-04-21 08:33:38 +02:00

14 lines
136 B
C

#include "ldns/config.h"
#include <ldns/ldns.h>
int
main(void)
{
ldns_rr *rr = ldns_rr_new();
ldns_rr_free(rr);
return 0;
}