source: sources/bootstrap

Last change on this file was 53, checked in by becoulet, 11 years ago

fixed bootstrap script for recent automake versions

  • Property svn:executable set to *
File size: 3.8 KB
Line 
1#! /bin/sh
2# $Id: bootstrap 2005 2008-07-16 20:51:50Z sam $
3
4# bootstrap: generic bootstrap/autogen.sh script for autotools projects
5#
6# Copyright (c) 2002-2008 Sam Hocevar <sam@zoy.org>
7#
8#    This program is free software. It comes without any warranty, to
9#    the extent permitted by applicable law. You can redistribute it
10#    and/or modify it under the terms of the Do What The Fuck You Want
11#    To Public License, Version 2, as published by Sam Hocevar. See
12#    http://sam.zoy.org/wtfpl/COPYING for more details.
13#
14# The latest version of this script can be found at the following place:
15#   http://sam.zoy.org/autotools/
16
17# Die if an error occurs
18set -e
19
20# Guess whether we are using configure.ac or configure.in
21if test -f configure.ac; then
22  conffile="configure.ac"
23elif test -f configure.in; then
24  conffile="configure.in"
25else
26  echo "$0: could not find configure.ac or configure.in"
27  exit 1
28fi
29
30# Check for needed features
31auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`"
32libtool="`grep '^[ \t]*A._PROG_LIBTOOL' $conffile >/dev/null 2>&1 && echo yes || echo no`"
33header="`grep '^[ \t]*A._CONFIG_HEADER' $conffile >/dev/null 2>&1 && echo yes || echo no`"
34makefile="`[ -f Makefile.am ] && echo yes || echo no`"
35aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am 2>/dev/null || :`"
36
37# Check for automake
38amvers="no"
39for v in 11 10 9 8 7 6 5; do
40  if automake-1.${v} --version >/dev/null 2>&1; then
41    amvers="-1.${v}"
42    break
43  elif automake1.${v} --version >/dev/null 2>&1; then
44    amvers="1.${v}"
45    break
46  fi
47done
48
49if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then
50  amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`"
51  amvers="`echo $amvers | sed -e ':p' -e 's/^\([0-9][0-9]*\.\)\{1\}[0-9][0-9]*$/&.0/' -e 't p'`"
52  amvers="$((`echo $amvers | sed -e ':a' -e 's/^\(.*\)\([0-9][0-9]*\)\./(\1\2)*100+/' -e 'ta'`))"
53  if expr "$amvers" -lt 10500 > /dev/null 2>&1; then
54    amvers="no"
55  else
56    amvers=""
57  fi
58fi
59
60if test "$amvers" = "no"; then
61  echo "$0: you need automake version 1.5 or later"
62  exit 1
63fi
64
65# Check for autoconf
66acvers="no"
67for v in "" "259" "253"; do
68  if autoconf${v} --version >/dev/null 2>&1; then
69    acvers="${v}"
70    break
71  fi
72done
73
74if test "$acvers" = "no"; then
75  echo "$0: you need autoconf"
76  exit 1
77fi
78
79# Check for libtool
80if test "$libtool" = "yes"; then
81  libtoolize="no"
82  if glibtoolize --version >/dev/null 2>&1; then
83    libtoolize="glibtoolize"
84  else
85    for v in "16" "15" "" "14"; do
86      if libtoolize${v} --version >/dev/null 2>&1; then
87        libtoolize="libtoolize${v}"
88        break
89      fi
90    done
91  fi
92
93  if test "$libtoolize" = "no"; then
94    echo "$0: you need libtool"
95    exit 1
96  fi
97fi
98
99# Remove old cruft
100for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done
101rm -Rf autom4te.cache
102if test -n "$auxdir"; then
103  if test ! -d "$auxdir"; then
104    mkdir "$auxdir"
105  fi
106  aclocalflags="${aclocalflags} -I $auxdir -I ."
107fi
108
109# Explain what we are doing from now
110set -x
111
112# Bootstrap package
113if test "$libtool" = "yes"; then
114  ${libtoolize} --copy --force
115  if test -n "$auxdir" -a ! "$auxdir" = "." -a -f "ltmain.sh"; then
116    echo "$0: working around a minor libtool issue"
117    mv ltmain.sh "$auxdir/"
118  fi
119fi
120
121aclocal${amvers} ${aclocalflags}
122autoconf${acvers}
123if test "$header" = "yes"; then
124  autoheader${acvers}
125fi
126if test "$makefile" = "yes"; then
127  #add --include-deps if you want to bootstrap with any other compiler than gcc
128  #automake${amvers} --add-missing --copy --include-deps
129  automake${amvers} --foreign --add-missing --copy
130fi
131
132# Remove cruft that we no longer want
133rm -Rf autom4te.cache
134
Note: See TracBrowser for help on using the repository browser.