man: remove a reference to pacmd from default.pa.5
[platform/upstream/pulseaudio.git] / bootstrap.sh
1 #!/usr/bin/env bash
2
3 # This file is part of PulseAudio.
4 #
5 # PulseAudio is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # PulseAudio is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
17
18 case $(uname) in
19         *Darwin*)
20                 LIBTOOLIZE="glibtoolize"
21                 ;;
22 esac
23 test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize
24
25 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
26     cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \
27     chmod +x .git/hooks/pre-commit && \
28     echo "Activated pre-commit hook."
29 fi
30
31 if [ -f .tarball-version ]; then
32     echo "Marking tarball version as modified."
33     echo -n `cat .tarball-version | sed 's/-rebootstrapped$//'`-rebootstrapped >.tarball-version
34 fi
35
36 # We check for this here, because if pkg-config is not found in the
37 # system, it's likely that the pkg.m4 macro file is also not present,
38 # which will make PKG_PROG_PKG_CONFIG be undefined and the generated
39 # configure file faulty.
40 if ! pkg-config --version &>/dev/null; then
41     echo "pkg-config is required to bootstrap this program"
42     DIE=1
43 fi
44
45 # Other necessary programs
46 intltoolize --version >/dev/null || DIE=1
47 test "$DIE" = 1 && exit 1
48
49 autopoint --force
50 AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
51
52 if test "x$NOCONFIGURE" = "x"; then
53     CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-force-preopen "$@" && \
54         make clean
55 fi