mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-24 02:47:42 +00:00
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
# $Id: bindcus.sh,v 1.2 2009/10/28 04:12:30 sar Exp $
|
|
|
|
# Configure and build the bind libraries for use by DHCP
|
|
#
|
|
# Usage: sh bindcus.sh
|
|
#
|
|
# Currently no arguments
|
|
#
|
|
|
|
|
|
topdir=`pwd`
|
|
binddir=$topdir/bind
|
|
cd bind
|
|
|
|
. ./version.tmp
|
|
version=${MAJORVER}.${MINORVER}.${PATCHVER}${RELEASETYPE}${RELEASEVER}
|
|
bindsrcdir=bind-$version
|
|
|
|
# Extract the source from the tarball
|
|
gunzip -c bind.tar.gz | tar xf -
|
|
|
|
# Run the script to build and install the export libraries
|
|
sh $topdir/util/bindlib.sh $binddir $bindsrcdir
|