fix iconv signature problems
[supertux.git] / autogen.sh
1 #!/bin/sh
2
3 # Correct working directory?
4 if test ! -f configure.ac ; then
5   echo "*** Please invoke this script from directory containing configure.ac."
6   exit 1
7 fi
8
9 aclocal -I mk/autoconf
10 autoheader
11
12 # generate Jamconfig.in
13 autoconf --trace=AC_SUBST \
14   | sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \
15   > Jamconfig.in
16 sed -e 's/.*BACKSLASH.*//' -i~ Jamconfig.in
17 rm Jamconfig.in~
18 echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in
19 echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in
20
21 autoconf
22