2015-08-01 10:47:06 +03:00
|
|
|
#!/bin/sh
|
2006-11-17 09:50:19 +03:00
|
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
2012-12-13 00:33:52 +04:00
|
|
|
# We trust that the user has a recent enough autoconf & automake setup
|
|
|
|
# (not older than a few years...)
|
2013-04-02 10:53:12 +04:00
|
|
|
|
|
|
|
test_program_errors=0
|
|
|
|
|
2015-08-01 10:47:06 +03:00
|
|
|
test_program () {
|
2013-04-02 10:53:12 +04:00
|
|
|
if ! command -v $1 >/dev/null 2>&1 ; then
|
|
|
|
echo "Missing program '$1'."
|
|
|
|
test_program_errors=1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-05-25 00:51:29 +04:00
|
|
|
for prog in autoconf automake libtool pkg-config ; do
|
2013-04-02 10:53:12 +04:00
|
|
|
test_program $prog
|
|
|
|
done
|
|
|
|
|
2013-05-25 00:51:29 +04:00
|
|
|
if test $(uname -s) != "Darwin" ; then
|
|
|
|
test_program gettext
|
|
|
|
fi
|
|
|
|
|
2013-04-02 10:53:12 +04:00
|
|
|
test $test_program_errors -ne 1 || exit 1
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
2013-02-08 00:33:03 +04:00
|
|
|
set -e
|
|
|
|
|
2013-03-18 12:35:30 +04:00
|
|
|
if test $(uname -s) = "OpenBSD" ; then
|
|
|
|
# OpenBSD needs these environment variables set.
|
|
|
|
AUTOCONF_VERSION=2.69
|
|
|
|
AUTOMAKE_VERSION=1.11
|
|
|
|
export AUTOCONF_VERSION
|
|
|
|
export AUTOMAKE_VERSION
|
|
|
|
fi
|
|
|
|
|
2013-02-08 00:33:03 +04:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -n "$srcdir" && cd "$srcdir"
|
|
|
|
|
|
|
|
echo "Updating build configuration files for FLAC, please wait...."
|
|
|
|
|
2013-01-17 13:13:33 +04:00
|
|
|
touch config.rpath
|
2014-10-06 11:10:31 +04:00
|
|
|
autoreconf --install --symlink --force
|
2013-02-08 00:33:03 +04:00
|
|
|
#./configure "$@" && echo
|