Files
zonemaster.es/zonemaster-ldns/ldns/test/12-unit-tests-dnssec.tpkg/12-unit-tests-dnssec.pre
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

41 lines
1.1 KiB
Plaintext

# #-- 10-older-test.pre--#
# source the master var file when it's there
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
# use .tpkg.var.test for in test variable passing
[ -f .tpkg.var.test ] && source .tpkg.var.test
# svnserve resets the path, you may need to adjust it, like this:
export PATH=$PATH:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:.
conf=`which autoconf` ||\
conf=`which autoconf-2.59` ||\
conf=`which autoconf-2.61` ||\
conf=`which autoconf259`
hdr=`which autoheader` ||\
hdr=`which autoheader-2.59` ||\
hdr=`which autoheader-2.61` ||\
hdr=`which autoheader259`
mk=`which gmake` ||\
mk=`which make`
echo "autoconf: $conf"
echo "autoheader: $hdr"
echo "make: $mk"
if [ ! $mk ] || [ ! $conf ] || [ ! $hdr ] ; then
echo "Error, one or more build tools not found, aborting"
exit 1
fi;
opts=`../../config.status --config`
echo options: $opts
#$conf 12-unit-tests-dnssec.configure.ac > configure && \
#chmod +x configure && \
#$hdr 12-unit-tests-dnssec.configure.ac &&\
#eval ./configure --with-ldns=../.. "$opts" && \
../../config.status --file 12-unit-tests-dnssec.Makefile
$mk -f 12-unit-tests-dnssec.Makefile