- 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>
14 lines
136 B
C
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;
|
|
}
|
|
|