summaryrefslogtreecommitdiff
blob: 62cfe724258cebe6366365cf4bedfc12426de350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
#  autogen.sh

libtoolize -c -f || glibtoolize -c -f
aclocal
autoheader -f
autoconf
if grep -q PKG_CHECK_MODULES configure; then
  # The generated configure is invalid because pkg-config is unavailable.
  rm configure
  echo "Error, missing pkg-config. Check the build requirements."
  exit 1
fi
automake -a -c -f