]> git.sesse.net Git - vlc/blob - bootstrap
* bootstrap: Only start removing files when required tools have been
[vlc] / bootstrap
1 #! /bin/sh
2
3 ##  bootstrap file for the VLC media player
4 ##  $Id: bootstrap,v 1.74 2003/10/23 15:30:22 sam Exp $
5 ##
6 ##  Authors: Sam Hocevar <sam@zoy.org>
7
8 if test "$#" != "0"; then
9   echo "Usage: $0"
10   echo "  Calls automake, autoconf, autoheader, autopoint and other auto* to generate"
11   echo "  m4 macros and prepare Makefiles."
12   exit 1
13 fi
14
15 ###
16 ###  Get a sane environment, just in case
17 ###
18 LANG=C
19 export LANG
20 CYGWIN=binmode
21 export CYGWIN
22
23 set -e
24 set -x
25
26 ##
27 ## Check for various tools
28 ##
29 AUTOMAKESUCKS=no
30 INSTALLSUCKS=no
31
32 # Check for automake
33 amvers="none"
34 if automake-1.7 --version >/dev/null 2>&1; then
35   amvers="-1.7"
36   # If we also have 1.6 (>> 1.6.1), use it instead because it is faster
37   if automake-1.6 --version >/dev/null 2>&1; then
38     if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" ">" "1.6.1" > /dev/null 2>&1; then
39       amvers="-1.6"
40     fi
41   fi
42 elif automake-1.6 --version >/dev/null 2>&1; then
43   amvers="-1.6"
44   if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" "<=" "1.6.1" > /dev/null 2>&1; then
45     AUTOMAKESUCKS=yes
46   fi
47 elif automake-1.5 --version >/dev/null 2>&1; then
48   INSTALLSUCKS=yes
49   amvers="-1.5"
50 elif automake --version > /dev/null 2>&1; then
51   amvers=""
52   case "`automake --version | sed -e '1s/[^0-9]*//' -e q`" in
53     0|0.*|1|1.[01234]|1.[01234][-.]*)
54       amvers="none" ;;
55     1.5|1.5.*)
56       INSTALLSUCKS=yes ;;
57     1.6|1.6.0|1.6.1)
58       AUTOMAKESUCKS=yes ;;
59   esac
60 fi
61
62 if test "${amvers}" = "none"; then
63   set +x
64   echo "you need automake version 1.5 or later"
65   exit 1
66 fi
67
68 # Check for gettext
69 if gettextize --version >/dev/null 2>&1; then
70 # Autopoint is available from 0.11.3, but we need 0.11.5
71 if expr `gettextize --version | sed -e '1s/[^0-9]*//' -e q` \
72         '>=' 0.11.5 >/dev/null 2>&1; then
73   # We have gettext, and a recent version! Everything is cool.
74   autopoint=autopoint
75   GETTEXT=yes
76 else
77   # User's gettext is too old. try to continue anyway.
78   echo > ABOUT-NLS
79   mkdir -p intl
80   echo > intl/Makefile.am
81   cat >> m4/private.m4 << EOF
82 dnl  User's gettext is too old, so this is a no-op
83 AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
84
85 EOF
86   autopoint=:
87   GETTEXT=old
88 fi;else
89   # we don't have gettext. grmbl. try to continue anyway.
90   echo > ABOUT-NLS
91   mkdir -p intl
92   echo > intl/Makefile.am
93   cat >> m4/private.m4 << EOF
94 dnl  User does not have gettext, so this is a no-op
95 AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
96
97 EOF
98   autopoint=:
99   GETTEXT=no
100 fi
101
102 # Check for pkg-config
103 if pkg-config --version >/dev/null 2>&1; then
104   # We have pkg-config, everything is cool.
105   PKGCONFIG=yes
106 else
107   # Not present, use a workaround.
108   cat >> m4/private.m4 << EOF
109 dnl  User does not have pkg-config, so this is a no-op
110 AC_DEFUN([PKG_CHECK_MODULES], [:])
111
112 EOF
113   PKGCONFIG=no
114 fi
115
116 aclocal=aclocal${amvers}
117 automake=automake${amvers}
118 autoconf=autoconf
119 autoheader=autoheader
120
121 ##
122 ## Generate the modules makefile, by parsing modules/**/Modules.am
123 ##
124
125 set +x
126 printf "generating modules/**/Makefile.am and m4/private.m4"
127
128 # Prepare m4/private.m4
129 rm -f m4/private.m4 && cat > m4/private.m4 << EOF
130 dnl  Private VLC macros - generated by bootstrap
131
132 EOF
133 rm -f m4/private.m4-tmp1 && cat > m4/private.m4-tmp1 << EOF
134 dnl  The required AM_CONDITIONAL calls
135 dnl  XXX: too many conditionals make the build very slow, disabled them
136 AC_DEFUN([AX_VLC_CONDITIONALS], [
137 EOF
138 rm -f m4/private.m4-tmp2 && cat > m4/private.m4-tmp2 << EOF
139 dnl  The required AC_SUBST calls
140 AC_DEFUN([AX_VLC_SUBSTS], [
141 EOF
142 rm -f m4/private.m4-tmp3 && cat > m4/private.m4-tmp3 << EOF
143 dnl  The required AC_OUTPUT calls
144 dnl  XXX: this feature is only supported starting from automake-1.7
145 AC_DEFUN([AX_VLC_MAKEFILES], [AC_OUTPUT([
146 EOF
147 rm -f m4/private.m4-tmp4 && cat > m4/private.m4-tmp4 << EOF
148 dnl  Helper macro for vlc-config generation
149 AC_DEFUN([AX_VLC_CONFIG_HELPER], [
150   cat >> vlc-config.in << BLAH
151 EOF
152
153 modules=""
154
155 rm -f modules/Makefile.am && cat > modules/Makefile.am << EOF
156 # Autogenerated by bootstrap - DO NOT EDIT
157 EXTRA_DIST = LIST
158 SUBDIRS = `sed -ne 's,modules/\([^/]*\)/Makefile,\1,p' configure.ac | xargs`
159 #DIST_SUBDIRS = \$(SUBDIRS)
160 EOF
161
162 for dir in `sed -ne 's,modules/\(.*\)/Makefile,\1,p' configure.ac`
163 do
164   printf "."
165   mf="modules/${dir}/Modules.am"
166   basedir="${dir%%\/*}"
167   # automake will not recurse for make dist if we don't define SUBDIRS = .
168   subdirs="`sed -ne 's,'modules/${dir}'/\([^/]*\)/Makefile,\1,p' configure.ac | xargs`"
169   rm -f modules/${dir}/Makefile.am && cat > modules/${dir}/Makefile.am << EOF
170
171 # Autogenerated by bootstrap - DO NOT EDIT - edit Modules.am instead
172
173 NULL =
174 libvlc_LIBRARIES =
175 noinst_LIBRARIES =
176 noinst_HEADERS =
177 EXTRA_DIST = Modules.am
178 BUILT_SOURCES =
179 SUBDIRS = ${subdirs}
180 #DIST_SUBDIRS = \$(SUBDIRS)
181 libvlcdir = \$(libdir)/vlc/${basedir}
182 include Modules.am
183
184 if HAVE_WIN32
185 # There's no need for pic code on win32 so get rid of this to substantially
186 # reduce the compilation time.
187 pic = no
188 endif
189
190 clean: clean-local
191 clean-local:
192         -rm -f *.a *.so *.dll *.sl *.dylib
193
194 EOF
195   for mod in `sed -n -e 's/^ *SOURCES_\([^ ]*\).*/\1/p' < ${mf}`
196   do
197     if grep '^SOURCES_'${mod}'.*=.*PRIVATE' < ${mf} >/dev/null 2>&1; then
198         PRIVATE='#'; else
199         PRIVATE=''; fi
200     if grep '^nodist_SOURCES_'${mod}'' < ${mf} >/dev/null 2>&1; then
201         NODIST=''; else
202         NODIST='#'; fi
203 #    cat >> m4/private.m4-tmp1 << EOF
204 #dnl  AM_CONDITIONAL(${mod}_p, test x\$${mod}_p = xyes)
205 #dnl  AM_CONDITIONAL(${mod}_b, test x\$${mod}_b = xyes)
206 #EOF
207     cat >> m4/private.m4-tmp4 << EOF
208     ${mod}) list="\\\${list} ${dir}/lib${mod}" ;;
209 EOF
210 # Generation of modules/**/Makefile.am
211 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
212 # - L_ is for LIBRARIES_, D_ for DATA_, B_ for BUILT_SOURCES_, F_ for LDFLAGS_,
213 #   S_ for SOURCES_, _p is for _plugin, _b is for _builtin. This is to reduce
214 #   the resulting file size.
215 # - *_CFLAGS, *_CXXFLAGS etc. because per-object CPPFLAGS does not seem to
216 #   work properly with any automake version I tested.
217     cat >> modules/${dir}/Makefile.am << EOF
218 # The ${mod} plugin
219 clean: clean-${mod}
220 all: all-${mod}
221
222 EOF
223     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
224 clean-${mod}:
225         -test -z "\$(nodist_SOURCES_${mod})" || rm -f \$(nodist_SOURCES_${mod})
226
227 EOF
228     fi
229     cat >> modules/${dir}/Makefile.am << EOF
230 all-${mod}:
231 if BUILD_MOZILLA
232         @set fnord \$\$MAKEFLAGS; amf=\$\$2; \\
233         if test "\$(plugin)" != "no" \\
234             && \$(VLC_CONFIG) --target plugin | grep "${dir}/lib${mod}_plugin" >/dev/null 2>&1; then \\
235           \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_plugin\$(LIBEXT) || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
236         fi; \\
237         if test "\$(builtin)" != "no" \\
238             && \$(VLC_CONFIG) --target builtin | grep "${dir}/lib${mod}\\.a" >/dev/null 2>&1; then \\
239           \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}.a || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
240         fi; \\
241         if test "\$(pic)" != "no" \\
242             && \$(VLC_CONFIG) --target builtin pic | grep "${dir}/lib${mod}_pic\\.a" >/dev/null 2>&1; then \\
243           \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_pic.a || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
244         fi; \\
245         test -z "\$\$fail"
246 else
247         @set fnord \$\$MAKEFLAGS; amf=\$\$2; \\
248         if test "\$(plugin)" != "no" \\
249             && \$(VLC_CONFIG) --target plugin | grep "${dir}/lib${mod}_plugin" >/dev/null 2>&1; then \\
250           \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_plugin\$(LIBEXT) || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
251         fi; \\
252         if test "\$(builtin)" != "no" \\
253             && \$(VLC_CONFIG) --target builtin | grep "${dir}/lib${mod}\\.a" >/dev/null 2>&1; then \\
254           \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}.a || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \\
255         fi; \\
256         test -z "\$\$fail"
257 endif
258
259 if UNTRUE
260 L${mod}p = lib${mod}_plugin.a
261 D${mod}p = lib${mod}_plugin\$(LIBEXT)
262 L${mod}b = lib${mod}.a
263 L${mod}pic = lib${mod}_pic.a
264 EOF
265     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
266 B${mod} = \$(nodist_SOURCES_${mod})
267 EOF
268     fi
269     cat >> modules/${dir}/Makefile.am << EOF
270 endif
271
272 EOF
273     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
274 ${PRIVATE}BUILT_SOURCES += \$(B${mod})
275 EOF
276     fi
277     cat >> modules/${dir}/Makefile.am << EOF
278 ${PRIVATE}lib${mod}_plugin_a_SOURCES = \$(SOURCES_${mod})
279 EOF
280     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
281 ${PRIVATE}nodist_lib${mod}_plugin_a_SOURCES = \$(nodist_SOURCES_${mod})
282 EOF
283     fi
284     cat >> modules/${dir}/Makefile.am << EOF
285 lib${mod}_plugin_a_CFLAGS = \`\$(VLC_CONFIG) --cflags plugin ${mod}\`
286 lib${mod}_plugin_a_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags plugin ${mod}\`
287 lib${mod}_plugin_a_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags plugin ${mod}\`
288
289 lib${mod}_pic_a_SOURCES = ${PRIVATE}\$(SOURCES_${mod})
290 EOF
291     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
292 nodist_lib${mod}_pic_a_SOURCES = ${PRIVATE}\$(nodist_SOURCES_${mod})
293 EOF
294     fi
295     cat >> modules/${dir}/Makefile.am << EOF
296 lib${mod}_pic_a_CFLAGS = \`\$(VLC_CONFIG) --cflags builtin pic ${mod}\`
297 lib${mod}_pic_a_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags builtin pic ${mod}\`
298 lib${mod}_pic_a_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags builtin pic ${mod}\`
299
300 lib${mod}_a_SOURCES = ${PRIVATE}\$(SOURCES_${mod})
301 EOF
302     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
303 nodist_lib${mod}_a_SOURCES = ${PRIVATE}\$(nodist_SOURCES_${mod})
304 EOF
305     fi
306     cat >> modules/${dir}/Makefile.am << EOF
307 lib${mod}_a_CFLAGS = \`\$(VLC_CONFIG) --cflags builtin ${mod}\`
308 lib${mod}_a_CXXFLAGS = \`\$(VLC_CONFIG) --cxxflags builtin ${mod}\`
309 lib${mod}_a_OBJCFLAGS = \`\$(VLC_CONFIG) --objcflags builtin ${mod}\`
310
311 libvlc_LIBRARIES += \$(L${mod}b) \$(L${mod}pic)
312 lib${mod}_DATA = \$(D${mod}p)
313
314 lib${mod}dir = \$(libdir)/vlc/${topdir}
315 ${PRIVATE}noinst_LIBRARIES += \$(L${mod}p)
316 ${PRIVATE}lib${mod}_plugin\$(LIBEXT): \$(lib${mod}_plugin_a_OBJECTS)
317 ${PRIVATE}      @case \`\$(VLC_CONFIG) --linkage ${mod}\` in \\
318 ${PRIVATE}        c++) echo \$(CXXLINK) \$(lib${mod}_plugin_a_OBJECTS) \\\`\$(VLC_CONFIG) --libs plugin ${mod}\\\` ; \$(CXXLINK) \$(lib${mod}_plugin_a_OBJECTS) \`\$(VLC_CONFIG) --libs plugin ${mod}\` ;; \\
319 ${PRIVATE}        objc) echo \$(OBJCLINK) \$(lib${mod}_plugin_a_OBJECTS) \\\`\$(VLC_CONFIG) --libs plugin ${mod}\\\` ; \$(OBJCLINK) \$(lib${mod}_plugin_a_OBJECTS) \`\$(VLC_CONFIG) --libs plugin ${mod}\` ;; \\
320 ${PRIVATE}        c|*) echo \$(LINK) \$(lib${mod}_plugin_a_OBJECTS) \\\`\$(VLC_CONFIG) --libs plugin ${mod}\\\` ; \$(LINK) \$(lib${mod}_plugin_a_OBJECTS) \`\$(VLC_CONFIG) --libs plugin ${mod}\` ;; \\
321 ${PRIVATE}      esac
322
323
324 EOF
325   done
326 done
327
328 cat >> m4/private.m4-tmp1 << EOF
329   AM_CONDITIONAL(UNTRUE, false)
330 ])
331 EOF
332 cat m4/private.m4-tmp1 >> m4/private.m4 && rm -f m4/private.m4-tmp1
333 cat >> m4/private.m4-tmp2 << EOF
334 ])
335 EOF
336 cat m4/private.m4-tmp2 >> m4/private.m4 && rm -f m4/private.m4-tmp2
337 cat >> m4/private.m4-tmp3 << EOF
338 ])])
339 EOF
340 cat m4/private.m4-tmp3 >> m4/private.m4 && rm -f m4/private.m4-tmp3
341 cat >> m4/private.m4-tmp4 << EOF
342 BLAH
343 ])
344 EOF
345 cat m4/private.m4-tmp4 >> m4/private.m4 && rm -f m4/private.m4-tmp4
346
347 echo "done."
348
349 ###
350 ###  classic bootstrap stuff
351 ###
352 set -x
353
354 # remove autotools cruft
355 rm -f aclocal.m4 configure config.log config.h config.h.in
356 # remove old autotools extra cruft
357 rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh
358 # remove new autotools extra cruft
359 (cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh)
360 # remove libtool cruft
361 rm -f ltmain.sh libtool ltconfig
362 # remove gettext cruft
363 rm -f ABOUT-NLS
364 rm -Rf intl
365 # remove old vlc cruft
366 rm -f m4/oldgettext.m4 stamp-pic configure.ac.in Modules.am
367 # remove new vlc cruft
368 rm -f stamp-builtin stamp-h* mozilla/stamp-pic
369
370 # Automake complains if this is not present
371 rm -f vlc-config.in && printf "" > vlc-config.in
372
373 # Do the rest
374 ${autopoint} -f
375 ${aclocal} -I m4
376 ${autoconf}
377 ${autoheader}
378 ${automake} --add-missing --copy
379
380 ##
381 ##  files which need to be regenerated
382 ##
383 rm -f vlc-config.in vlc-config
384 rm -f src/misc/modules_builtin.h src/misc/modules_plugin.h
385 rm -f include/vlc_symbols.h
386 rm -f mozilla/vlcintf.h
387
388 # Shut up
389 set +x
390
391 ##
392 ##  Tell the user about gettext, pkg-config and sed
393 ##
394 case "${GETTEXT}" in
395   yes) ;;
396   no) cat << EOF
397
398 ===========================================================
399 IMPORTANT NOTE: you do not have gettext installed on your
400 system. The vlc build will work, but you will not have
401 internationalization support. We suggest installing gettext.
402 EOF
403   ;;
404   old) cat << EOF
405
406 ==========================================================
407 NOTE: you have an old version of gettext installed on your
408 system. The vlc build will work, but if your system does not
409 have libintl you will not have internationalization support.
410 We suggest upgrading to gettext 0.11.5 or later.
411 EOF
412   ;;
413 esac
414
415 case "$PKGCONFIG" in
416   yes) ;;
417   no) cat << EOF
418
419 ==============================================================
420 NOTE: you do not have the "pkg-config" utility on your system;
421 detection of the Gtk-2.0 and GNOME 2.0 libraries will not be
422 reliable.
423 EOF
424   ;;
425 esac
426
427 case "$AUTOMAKESUCKS" in
428   no) ;;
429   yes) cat << EOF
430
431 =============================================================
432 IMPORTANT NOTE: your version of automake has a bug which will
433 prevent proper plugin compilation. Either compile VLC with
434 the --disable-plugins flag, or use a version of automake newer
435 than 1.6.1 (1.6.2 is OK, and so are the 1.5 series).
436 EOF
437   ;;
438 esac
439
440 case "$INSTALLSUCKS" in
441   no) ;;
442   yes) cat << EOF
443
444 =============================================================
445 IMPORTANT NOTE: your version of automake has a bug which will
446 prevent proper installation. Do not use "make install" with this
447 version of automake, or use a version of automake newer than 1.5
448 (such as 1.6 or 1.7).
449 EOF
450   ;;
451 esac
452