mirror of
https://github.com/videolan/vlc.git
synced 2024-11-27 11:57:03 +08:00
69 lines
1.4 KiB
Bash
Executable File
69 lines
1.4 KiB
Bash
Executable File
#! /bin/sh
|
|
|
|
## bootstrap file for the VLC media player
|
|
##
|
|
## Copyright (C) 2005-2008 the VideoLAN team
|
|
##
|
|
## Authors: Sam Hocevar <sam@zoy.org>
|
|
## Rémi Denis-Courmont <rem # videolan # org>
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if test "$#" != "0"; then
|
|
echo "Usage: $0"
|
|
echo " Calls autoreconf to generate m4 macros and prepare Makefiles."
|
|
exit 1
|
|
fi
|
|
|
|
ACLOCAL_ARGS="-I m4 ${ACLOCAL_ARGS}"
|
|
|
|
# Check for tools directory
|
|
if test -d extras/tools/build/bin; then
|
|
PATH="`pwd`/extras/tools/build/bin:$PATH"
|
|
fi
|
|
|
|
###
|
|
### Get a sane environment, just in case
|
|
###
|
|
CYGWIN=binmode
|
|
export CYGWIN
|
|
|
|
# Check for pkg-config
|
|
if ! "${PKG_CONFIG:-pkg-config}" --version >/dev/null 2>&1; then
|
|
echo 'Error: "pkg-config" is not installed.' >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Check for autopoint (GNU gettext)
|
|
export AUTOPOINT
|
|
test "$AUTOPOINT" || AUTOPOINT=autopoint
|
|
if ! "$AUTOPOINT" --dry-run --force >/dev/null 2>&1; then
|
|
AUTOPOINT=true
|
|
cat << EOF
|
|
NOTE: GNU gettext appears to be missing or out-of-date.
|
|
Please install or update GNU gettext.
|
|
Also check if you have cvs, a dependency of autopoint.
|
|
Otherwise, you will not be able to build a source tarball.
|
|
==============================================================
|
|
|
|
EOF
|
|
fi
|
|
|
|
###
|
|
### classic bootstrap stuff
|
|
###
|
|
|
|
autoreconf --install --force --verbose ${ACLOCAL_ARGS}
|
|
rm -f po/Makevars.template
|
|
|
|
##
|
|
## files which need to be regenerated
|
|
##
|
|
rm -f stamp-h*
|
|
|
|
# Shut up
|
|
set +x
|
|
echo "Successfully bootstrapped"
|