summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: d7ab12330f8e89708b5bc2cbce08a0aa2e25cc37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh

test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
(
  cd "$srcdir" &&
    (
      rm -rf autom4te.cache
      rm -f aclocal.m4 ltmain.sh

      touch README
      touch ABOUT-NLS

      echo "Running autopoint..." ; autopoint -f || :
      echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
      echo "Running autoheader..." ; autoheader || exit 1
      echo "Running autoconf..." ; autoconf || exit 1
      echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
      echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
    )

  W=0

  rm -f config.cache-env.tmp
  echo "OLD_PARM=\"$@\"" >> config.cache-env.tmp
  echo "OLD_CFLAGS=\"$CFLAGS\"" >> config.cache-env.tmp
  echo "OLD_PATH=\"$PATH\"" >> config.cache-env.tmp
  echo "OLD_PKG_CONFIG_PATH=\"$PKG_CONFIG_PATH\"" >> config.cache-env.tmp
  echo "OLD_LDFLAGS=\"$LDFLAGS\"" >> config.cache-env.tmp

  cmp config.cache-env.tmp config.cache-env >> /dev/null
  if [ $? -ne 0 ]; then
    W=1;
  fi

  if [ $W -ne 0 ]; then
    echo "Cleaning configure cache...";
    rm -f config.cache config.cache-env
    mv config.cache-env.tmp config.cache-env
  else
    rm -f config.cache-env.tmp
  fi
)

if [ -z "$NOCONFIGURE" ]; then
  $srcdir/configure -C "$@"
fi