3 ## bootstrap file for the VLC media player
5 ## Copyright (C) 2005-2006 the VideoLAN team
7 ## Authors: Sam Hocevar <sam@zoy.org>
8 ## RĂ©mi Denis-Courmont <rem # videolan # org>
10 if test "$#" != "0"; then
12 echo " Calls automake, autoconf, autoheader, autopoint and other auto* to generate"
13 echo " m4 macros and prepare Makefiles."
18 ### Get a sane environment, just in case
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
48 echo "ERR: Contribs haven't been built"
49 echo "ERR: Please run:"
51 echo "ERR: 'cd extras/contrib && ./bootstrap && make && cd ../..'"
53 echo "ERR: Make sure fink has been disabled too."
60 rm -f m
4/autoconf260.
m4
61 case "$(autoreconf --version|head -n 1)" in
63 echo "Enabling provisional autoconf 2.59 work-around. Update autoconf ASAP."
64 echo "Press Enter to continue"
66 cp -f extras
/buildsystem
/autotools
/m
4/autoconf260.
m4 m
4/
70 # Check for pkg-config
71 if pkg-config
--version >/dev
/null
2>&1; then
72 # We have pkg-config, everything is cool.
79 ## Generate the modules makefile, by parsing modules/**/Modules.am
83 echo "generating modules/**/Makefile.am and m4/private.m4"
85 # Prepare m4/private.m4
86 rm -f m
4/private.
m4 && cat > m
4/private.
m4 << EOF
87 dnl Private VLC macros - generated by bootstrap
91 if [ "${PKGCONFIG}" = "no" ]; then cat >> m
4/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])])
98 cat >> m
4/private.
m4 << EOF
99 dnl Helper macro for vlc-config generation
100 AC_DEFUN([VLC_CONFIG_HELPER], [
101 cat >> vlc-config.in << BLAH
106 rm -f modules
/Makefile.am
&& cat > modules
/Makefile.am
<< EOF
107 # Autogenerated by bootstrap - DO NOT EDIT
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 >> m
4/private.
m4 << EOF
122 ### classic bootstrap stuff
126 # Automake complains if these are not present
128 cp -f INSTALL INSTALL.svn
130 autoreconf
--install --force --verbose ${ACLOCAL_ARGS}
131 rm -f po
/Makevars.template
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
146 ## Tell the user about gettext, pkg-config and sed
148 if [ "$PKGCONFIG" = "no" ]; then
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
158 echo "Successfully bootstrapped"