1
#!/bin/sh
2
3
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4"
4
DIE=0
5
6
srcdir=`dirname $0`
7
test -z "$srcdir" && srcdir=.
8
9
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
10
  echo
11
  echo "**Error**: You must have \`autoconf' installed."
12
  echo "Download the appropriate package for your distribution,"
13
  echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
14
  DIE=1
15
}
16
17
if [ -z "$LIBTOOL" ]; then
18
  LIBTOOL=`which glibtool 2>/dev/null` 
19
  if [ ! -x "$LIBTOOL" ]; then
20
    LIBTOOL=`which libtool`
21
  fi
22
fi
23
24
(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && {
25
  ($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
26
    echo
27
    echo "**Error**: You must have \`libtool' installed."
28
    echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz"
29
    echo "(or a newer version if it is available)"
30
    DIE=1
31
  }
32
}
33
34
(gtkdocize --version) < /dev/null > /dev/null 2>&1 || {
35
  echo
36
  echo "You must have gtk-doc installed to compile $PROJECT."
37
  echo "Install the appropriate package for your distribution,"
38
  echo "or get the source tarball at http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/"
39
  DIE=1
40
}
41
42
(automake --version) < /dev/null > /dev/null 2>&1 || {
43
  echo
44
  echo "**Error**: You must have \`automake' installed."
45
  echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
46
  echo "(or a newer version if it is available)"
47
  DIE=1
48
  NO_AUTOMAKE=yes
49
}
50
51
# if no automake, don't bother testing for aclocal
52
test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
53
  echo
54
  echo "**Error**: Missing \`aclocal'.  The version of \`automake'"
55
  echo "installed doesn't appear recent enough."
56
  echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
57
  echo "(or a newer version if it is available)"
58
  DIE=1
59
}
60
61
if test "$DIE" -eq 1; then
62
  exit 1
63
fi
64
65
if [ -z "$*" -a "x$NOCONFIGURE" = "x" ]; then
66
  echo "**Warning**: I am going to run \`configure' with no arguments."
67
  echo "If you wish to pass any to it, please specify them on the"
68
  echo \`$0\'" command line."
69
  echo
70
fi
71
72
case $CC in
73
xlc )
74
  am_opt=--include-deps;;
75
esac
76
77
78
if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then
79
  if test -z "$NO_LIBTOOLIZE" ; then 
80
    echo "Running libtoolize..."
81
    libtoolize --force --copy
82
  fi
83
fi
84
85
echo "Running aclocal $ACLOCAL_FLAGS ..."
86
aclocal $ACLOCAL_FLAGS || {
87
  echo
88
  echo "**Error**: aclocal failed. This may mean that you have not"
89
  echo "installed all of the packages you need, or you may need to"
90
  echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\""
91
  echo "for the prefix where you installed the packages whose"
92
  echo "macros were not found"
93
  exit 1
94
}
95
96
if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
97
  echo "Running autoheader..."
98
  autoheader || { echo "**Error**: autoheader failed."; exit 1; }
99
fi
100
101
echo "Running automake --gnu $am_opt ..."
102
automake --add-missing --gnu $am_opt ||
103
  { echo "**Error**: automake failed."; exit 1; }
104
echo "Running autoconf ..."
105
autoconf || { echo "**Error**: autoconf failed."; exit 1; }
106
107
108
conf_flags="--enable-maintainer-mode"
109
110
if test x$NOCONFIGURE = x; then
111
  echo Running $srcdir/configure $conf_flags "$@" ...
112
  $srcdir/configure $conf_flags "$@" \
113
  && echo Now type \`make\' to compile $PKG_NAME || exit 1
114
else
115
  echo Skipping configure process.
116
fi