986ba33c7a
I've been holding back on this because 1.7.0 requires OpenSSL 1.1.0 or newer for full DANE support. But we can't wait forever, and nothing in base uses DANE anyway, so here we go.
20 lines
256 B
Bash
Executable File
20 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
set -e
|
|
|
|
ldns=$(dirname $(realpath $0))
|
|
cd $ldns
|
|
|
|
libtoolize --copy
|
|
autoheader
|
|
autoconf
|
|
./configure --prefix= --exec-prefix=/usr --disable-dane-ta-usage
|
|
|
|
cd $ldns/drill
|
|
autoheader
|
|
autoconf
|
|
./configure --prefix= --exec-prefix=/usr
|