Revert silly commit
[vlc.git] / bootstrap
blob4fe358618f0d5e2f81971c44f9d6d10e881dffdb
1 #! /bin/sh
3 ## bootstrap file for the VLC media player
4 ##
5 ## Copyright (C) 2005-2006 the VideoLAN team
6 ##
7 ## Authors: Sam Hocevar <sam@zoy.org>
8 ## RĂ©mi Denis-Courmont <rem # videolan # org>
10 if test "$#" != "0"; then
11 echo "Usage: $0"
12 echo " Calls automake, autoconf, autoheader, autopoint and other auto* to generate"
13 echo " m4 macros and prepare Makefiles."
14 exit 1
17 ###
18 ### Get a sane environment, just in case
19 ###
20 CYGWIN=binmode
21 export CYGWIN
23 set -e
24 set -x
27 ## Check for various tools
30 ACLOCAL_ARGS="-I m4 ${ACLOCAL_ARGS}"
32 # Check for contrib directory
33 if test -d extras/contrib/bin; then
34 export PATH="`pwd`/extras/contrib/bin:$PATH"
35 if test -d extras/contrib/share/aclocal; then
36 ACLOCAL_ARGS="${ACLOCAL_ARGS} -I extras/contrib/share/aclocal"
38 if test ".`uname -s`" = ".Darwin"; then
39 export LD_LIBRARY_PATH=./extras/contrib/lib:$LD_LIBRARY_PATH
40 export DYLD_LIBRARY_PATH=./extras/contrib/lib:$DYLD_LIBRARY_PATH
41 elif test ".`uname -s`" = ".BeOS"; then
42 export LIBRARY_PATH=./extras/contrib/lib:$LIBRARY_PATH
43 export BELIBRARIES=./extras/contrib/lib:$BELIBRARIES
45 elif test ".`uname -s`" = ".Darwin"; then
46 set +x
47 echo ""
48 echo "ERR: Contribs haven't been built"
49 echo "ERR: Please run:"
50 echo "ERR: "
51 echo "ERR: 'cd extras/contrib && ./bootstrap && make && cd ../..'"
52 echo "ERR: "
53 echo "ERR: Make sure fink has been disabled too."
54 echo ""
55 set -x
56 exit 1
59 # Check for autoconf
60 rm -f m4/autoconf260.m4
61 case "$(autoreconf --version|head -n 1)" in
62 *2.59*)
63 echo "Enabling provisional autoconf 2.59 work-around. Update autoconf ASAP."
64 echo "Press Enter to continue"
65 read
66 cp -f extras/buildsystem/autotools/m4/autoconf260.m4 m4/
68 esac
70 # Check for pkg-config
71 if pkg-config --version >/dev/null 2>&1; then
72 # We have pkg-config, everything is cool.
73 PKGCONFIG=yes
74 else
75 PKGCONFIG=no
79 ## Generate the modules makefile, by parsing modules/**/Modules.am
82 set +x
83 echo "generating modules/**/Makefile.am and m4/private.m4"
85 # Prepare m4/private.m4
86 rm -f m4/private.m4 && cat > m4/private.m4 << EOF
87 dnl Private VLC macros - generated by bootstrap
89 EOF
91 if [ "${PKGCONFIG}" = "no" ]; then cat >> m4/private.m4 << EOF
92 dnl User does not have pkg-config, so assume package was not found
93 AC_DEFUN([PKG_CHECK_MODULES],[ifelse([\$4], , :, [\$4])])
95 EOF
98 cat >> m4/private.m4 << EOF
99 dnl Helper macro for vlc-config generation
100 AC_DEFUN([VLC_CONFIG_HELPER], [
101 cat >> vlc-config.in << BLAH
104 modules=""
106 rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF
107 # Autogenerated by bootstrap - DO NOT EDIT
108 EXTRA_DIST = LIST
109 dist_noinst_SCRIPTS = genmf
110 SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs`
114 modules/genmf `sed -ne 's,modules/\(.*\)/Makefile,\1,p' configure.ac`
116 cat >> m4/private.m4 << EOF
117 BLAH
122 ### classic bootstrap stuff
124 set -x
126 # Automake complains if these are not present
127 echo > vlc-config.in
128 cp -f INSTALL INSTALL.svn
130 autoreconf --install --force ${ACLOCAL_ARGS}
131 rm -f po/Makevars.template
132 echo > ABOUT-NLS
133 mv -f INSTALL.svn INSTALL
136 ## files which need to be regenerated
138 rm -f vlc-config.in vlc-config
139 rm -f src/misc/modules_builtin.h
140 rm -f stamp-builtin stamp-h* mozilla/stamp-pic
142 # Shut up
143 set +x
146 ## Tell the user about gettext, pkg-config and sed
148 if [ "$PKGCONFIG" = "no" ]; then
149 cat << EOF
151 ==============================================================
152 NOTE: you do not have the "pkg-config" utility on your system;
153 detection of the Gtk-2.0 and GNOME 2.0 libraries will not be
154 reliable.
158 echo "Successfully bootstrapped"