3 ## bootstrap file for the VLC media player
5 ## Copyright (C) 2005-2008 the VideoLAN team
7 ## Authors: Sam Hocevar <sam@zoy.org>
8 ## RĂ©mi Denis-Courmont <rem # videolan # org>
14 if test "$#" != "0"; then
16 echo " Calls autoreconf to generate m4 macros and prepare Makefiles."
20 ACLOCAL_ARGS
="-I m4 ${ACLOCAL_ARGS}"
22 # Check for tools directory
23 if test -d extras
/tools
/build
/bin
; then
24 PATH
="`pwd`/extras/tools/build/bin:$PATH"
28 ### Get a sane environment, just in case
33 # Check for pkg-config
34 if ! "${PKG_CONFIG:-pkg-config}" --version >/dev
/null
2>&1; then
35 echo 'Error: "pkg-config" is not installed.' >&2
39 # Check for autopoint (GNU gettext)
41 test "$AUTOPOINT" || AUTOPOINT
=autopoint
42 if ! "$AUTOPOINT" --dry-run --force >/dev
/null
2>&1; then
45 NOTE: GNU gettext appears to be missing or out-of-date.
46 Please install or update GNU gettext.
47 Also check if you have cvs, a dependency of autopoint.
48 Otherwise, you will not be able to build a source tarball.
49 ==============================================================
55 ### classic bootstrap stuff
58 autoreconf
--install --force --verbose ${ACLOCAL_ARGS}
59 rm -f po
/Makevars.template
62 ## files which need to be regenerated
68 echo "Successfully bootstrapped"