mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 18:40:16 +00:00
33 lines
808 B
Bash
Executable File
33 lines
808 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
command -v automake >/dev/null 2>&1 || { echo >&2 "Automake missing. Aborting."; exit 1; }
|
|
command -v autoconf >/dev/null 2>&1 || { echo >&2 "Autoconf missing. Aborting."; exit 1; }
|
|
|
|
[ -d m4 ] || mkdir m4
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
|
|
cd $srcdir
|
|
# install config.guess config.sub install-sh missing
|
|
automake --add-missing -c >/dev/null 2>&1 || true # actual call will fail - we do not have Makefile.am
|
|
# Running autoreconf is preferred over aclocal/autoheader/autoconf.
|
|
# It, however, needs to be a little bit bent because we do not use automake.
|
|
autoreconf -i >/dev/null 2>&1 || true
|
|
|
|
CONFIGURE_OPTS=
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
CONFIGURE_OPTS="$CONFIGURE_OPTS --enable-debug"
|
|
fi
|
|
|
|
cd $ORIGDIR
|
|
|
|
$srcdir/configure $CONFIGURE_OPTS $@
|
|
|
|
cd $ORIGDIR
|
|
|