Deleted Added
full compact
freebsd-configure.sh (255839) freebsd-configure.sh (268883)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/contrib/unbound/freebsd-configure.sh 255839 2013-09-24 09:56:10Z des $
3# $FreeBSD: head/contrib/unbound/freebsd-configure.sh 268883 2014-07-19 18:38:48Z des $
4#
5
6set -e
7
8error() {
9 echo "$@" >&2
10 exit 1
11}

--- 15 unchanged lines hidden (view full) ---

27autoconf
28autoheader
29./configure \
30 --prefix= --exec-prefix=/usr \
31 --with-conf-file=/var/unbound/unbound.conf \
32 --with-run-dir=/var/unbound \
33 --with-username=unbound
34
4#
5
6set -e
7
8error() {
9 echo "$@" >&2
10 exit 1
11}

--- 15 unchanged lines hidden (view full) ---

27autoconf
28autoheader
29./configure \
30 --prefix= --exec-prefix=/usr \
31 --with-conf-file=/var/unbound/unbound.conf \
32 --with-run-dir=/var/unbound \
33 --with-username=unbound
34
35# Regenerate the configuration parser
36{
37cat <<EOF
38#include "config.h"
39#include "util/configyyrename.h"
40EOF
41/usr/bin/flex -L -t util/configlexer.lex
42} >util/configlexer.c
43
44/usr/bin/yacc -d -o util/configparser.c util/configparser.y
35# Don't try to provide bogus memory usage statistics based on sbrk(2).
36sed -n -i.orig -e '/HAVE_SBRK/!p' config.status
37./config.status config.h