freebsd-dev/contrib/ldns/freebsd-configure.sh
Dag-Erling Smørgrav 22889169f8 Add a script that runs configure for both ldns and drill.
Run configure for drill (I forgot to do it when I imported 1.6.17, but the
omission was harmless).  Note that running configure --with-drill at the
top level doesn't quite work for us since it is geared toward the slightly
weird upstream Makefiles, which we don't use.
2015-04-27 12:02:16 +00:00

20 lines
232 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
set -e
ldns=$(dirname $(realpath $0))
cd $ldns
libtoolize --copy
autoheader
autoconf
./configure --prefix= --exec-prefix=/usr
cd $ldns/drill
autoheader
autoconf
./configure --prefix= --exec-prefix=/usr