resetting manifest requested domain to floor
[platform/upstream/libasyncns.git] / bootstrap.sh
1 #!/bin/bash
2
3 # This file is part of libasyncns.
4 #
5 # Copyright 2005-2008 Lennart Poettering
6 #
7 # libasyncns is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU Lesser General Public License as
9 # published by the Free Software Foundation, either version 2.1 of the
10 # License, or (at your option) any later version.
11 #
12 # libasyncns is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with libasyncns. If not, see
19 # <http://www.gnu.org/licenses/>.
20
21 VERSION=1.9
22
23 run_versioned() {
24     local P
25     local V
26
27     V=$(echo "$2" | sed -e 's,\.,,g')
28
29     if [ -e "`which $1$V 2> /dev/null`" ] ; then
30         P="$1$V"
31     else
32         if [ -e "`which $1-$2 2> /dev/null`" ] ; then
33             P="$1-$2"
34         else
35             P="$1"
36         fi
37     fi
38
39     shift 2
40     "$P" "$@"
41 }
42
43 set -ex
44
45 if [ "x$1" = "xam" ] ; then
46     run_versioned automake "$VERSION" -a -c --foreign
47     ./config.status
48 else
49     rm -rf autom4te.cache
50     rm -f config.cache
51
52     mkdir -p common
53     touch config.rpath
54
55     test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize
56
57     "$LIBTOOLIZE" -c --force
58     run_versioned aclocal "$VERSION" -I m4
59     run_versioned autoconf 2.59 -Wall
60     run_versioned autoheader 2.59
61     run_versioned automake "$VERSION" -a -c --foreign
62
63     if test "x$NOCONFIGURE" = "x"; then
64         CFLAGS="-g -O0" ./configure --sysconfdir=/etc --localstatedir=/var "$@"
65         make clean
66     fi
67 fi