flac/autogen.sh

23 lines
564 B
Bash
Raw Normal View History

2001-06-06 23:54:54 +04:00
#!/bin/sh
2006-11-17 09:50:19 +03:00
# Run this to set up the build system: configure, makefiles, etc.
# We trust that the user has a recent enough autoconf & automake setup
# (not older than a few years...)
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
srcdir=`dirname $0`
test -n "$srcdir" && cd "$srcdir"
echo "Updating build configuration files for FLAC, please wait...."
touch config.rpath
autoreconf -isf
#./configure "$@" && echo