slouken@6: #!/bin/sh slouken@6: # slouken@294: echo "Generating build information using autoconf" slouken@294: echo "This may take a while ..." slouken@6: slouken@294: # Regenerate configuration files slouken@351: cat acinclude/* >aclocal.m4 slouken@294: found=false slouken@322: for autoconf in autoconf autoconf259 autoconf-2.59 slouken@294: do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi slouken@294: done slouken@294: if test x$found = xfalse; then slouken@294: echo "Couldn't find autoconf, aborting" slouken@294: exit 1 slouken@294: fi slouken@294: slouken@294: # Run configure for this platform slouken@63: echo "Now you are ready to run ./configure"