fe6d937978
MFH (r266139-r266143, r266145, r266149, r266150): fix props MFH (r266179, r266180, r266193, r266238, r266777): misc cleanup MFH (r266863): create and use /var/unbound/conf.d MFH (r268839): import unblock-lan-zones patch from upstream MFH (r268840): fix reverse lookups on private networks MFH (r268883): avoid spamming source tree during build PR: 190739 (for r268883)
38 lines
823 B
Bash
Executable File
38 lines
823 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
set -e
|
|
|
|
error() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
unbound=$(dirname $(realpath $0))
|
|
cd $unbound
|
|
|
|
ldnssrc=$(realpath $unbound/../ldns)
|
|
[ -f $ldnssrc/ldns/ldns.h ] || error "can't find LDNS sources"
|
|
export CFLAGS="-I$ldnssrc"
|
|
|
|
ldnsbld=$(realpath $unbound/../../lib/libldns)
|
|
[ -f $ldnsbld/Makefile ] || error "can't find LDNS build directory"
|
|
|
|
ldnsobj=$(realpath $(make -C$ldnsbld -V.OBJDIR))
|
|
[ -f $ldnsobj/libldns.a ] || error "can't find LDNS object directory"
|
|
export LDFLAGS="-L$ldnsobj"
|
|
|
|
autoconf
|
|
autoheader
|
|
./configure \
|
|
--prefix= --exec-prefix=/usr \
|
|
--with-conf-file=/var/unbound/unbound.conf \
|
|
--with-run-dir=/var/unbound \
|
|
--with-username=unbound
|
|
|
|
# Don't try to provide bogus memory usage statistics based on sbrk(2).
|
|
sed -n -i.orig -e '/HAVE_SBRK/!p' config.status
|
|
./config.status config.h
|