~ubuntu-branches/ubuntu/lucid/avr-libc/lucid

« back to all changes in this revision

Viewing changes to reconf

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2005-03-19 11:16:14 UTC
  • mfrom: (1.1.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050319111614-4g01s2ftv5x5nxf3
Tags: 1:1.2.3-3
* Added build depends on netpbm
* Added build depends on tetex-extra

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
#
 
3
# Copyright (c) 2002
 
4
# Reinhard Jessich  <reinhard.jessich@telering.at>
 
5
# All rights reserved.
 
6
#
 
7
# Redistribution and use in source and binary forms, with or without
 
8
# modification, are permitted provided that the following conditions are met:
 
9
#
 
10
# * Redistributions of source code must retain the above copyright
 
11
#   notice, this list of conditions and the following disclaimer.
 
12
#
 
13
# * Redistributions in binary form must reproduce the above copyright
 
14
#   notice, this list of conditions and the following disclaimer in
 
15
#   the documentation and/or other materials provided with the
 
16
#   distribution.
 
17
#
 
18
# * Neither the name of the copyright holders nor the names of
 
19
#   contributors may be used to endorse or promote products derived
 
20
#   from this software without specific prior written permission.
 
21
#
 
22
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
23
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
24
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
25
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
26
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
27
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
28
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
29
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
30
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
31
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
32
# POSSIBILITY OF SUCH DAMAGE.
 
33
#
 
34
#
3
35
# Reconfigure the whole project.
4
36
#
5
37
# usage: reconf
9
41
# never execute this script.
10
42
#
11
43
# ATTENTION:
12
 
#  You need automake 1.4-p5, otherwise make dist will not work.
 
44
#  You need automake-1.4-p5 and autoconf-2.13, otherwise strange things could
 
45
#  happen during the build process.
13
46
#
14
47
 
15
 
# to what is executed
 
48
export AUTOMAKE AUTOCONF ACLOCAL AUTOHEADER
 
49
 
 
50
status="fail"
 
51
for AUTOMAKE in automake automake14 automake-1.4
 
52
do
 
53
        AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | cut -d ' ' -f 4 | cut -c -3) 2>/dev/null`
 
54
        if [ $? != 0 ]
 
55
        then
 
56
                continue
 
57
        fi
 
58
        if [ "$AUTOMAKE_VER" = "1.4" ]
 
59
        then
 
60
                status=""
 
61
                ACLOCAL=aclocal`expr "$AUTOMAKE" : 'automake\(.*\)'`
 
62
                break
 
63
        fi
 
64
done
 
65
 
 
66
if [ -n "$status" ]
 
67
then
 
68
        echo "You need to use automake version 1.4 (preferrable 1.4-p5)."
 
69
        echo "You are using `automake --version | head -n 1`."
 
70
        echo
 
71
        exit 1
 
72
fi
 
73
 
 
74
status="fail"
 
75
 
 
76
for AUTOCONF in autoconf autoconf213 autoconf-2.13
 
77
do
 
78
        AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | cut -d ' ' -f 3 | cut -c -4) 2>/dev/null`
 
79
        if [ $? != 0 ]
 
80
        then
 
81
                continue
 
82
        fi
 
83
        if [ "$AUTOCONF_VER" = "2.13" ]
 
84
        then
 
85
                status=""
 
86
                AUTOHEADER=autoheader`expr "$AUTOCONF" : 'autoconf\(.*\)'`
 
87
                break
 
88
        fi
 
89
done
 
90
 
 
91
if [ -n "$status" ]
 
92
then
 
93
        echo "You need to use autoconf version 2.13."
 
94
        echo "You are using `autoconf --version | head -n 1`."
 
95
        echo
 
96
        exit 1
 
97
fi
 
98
 
 
99
# to see what is executed
16
100
set -x
17
101
 
18
 
aclocal
19
 
autoconf
20
 
automake
 
102
${ACLOCAL}
 
103
#${AUTOHEADER}
 
104
${AUTOCONF}
 
105
${AUTOMAKE} --foreign --add-missing --copy