- 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>
17 lines
234 B
C
17 lines
234 B
C
/*
|
|
* ldns-version shows ldns's version
|
|
*
|
|
* (c) NLnet Labs, 2005 - 2008
|
|
* See the file LICENSE for the license
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <ldns/ldns.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
printf("%s\n", ldns_version());
|
|
return 0;
|
|
}
|