]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/ldns/freebsd-configure.sh
Remove spurious newline
[FreeBSD/FreeBSD.git] / contrib / ldns / freebsd-configure.sh
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 set -e
7
8 error() {
9         echo "$@" >&2
10         exit 1
11 }
12
13 ldns=$(dirname $(realpath $0))
14 cd $ldns
15
16 # Run autotools before we drop LOCALBASE out of PATH
17 (cd $ldns && libtoolize --copy && autoheader && autoconf)
18 (cd $ldns/drill && aclocal && autoheader && autoconf)
19
20 # Ensure we use the correct toolchain and clean our environment
21 export CC=$(echo ".include <bsd.lib.mk>" | make -f /dev/stdin -VCC)
22 export CPP=$(echo ".include <bsd.lib.mk>" | make -f /dev/stdin -VCPP)
23 unset CFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH LIBS
24 export PATH=/bin:/sbin:/usr/bin:/usr/sbin
25
26 cd $ldns
27 ./configure --prefix= --exec-prefix=/usr
28
29 cd $ldns/drill
30 ./configure --prefix= --exec-prefix=/usr