Import boehm-gc snapshot, taken from
[official-gcc.git] / boehm-gc / autogen.sh
blob8a614f919d16a7a48100034e16f56041e95164ba
1 #!/bin/sh
2 set -e
4 # This script creates (or regenerates) configure (as well as aclocal.m4,
5 # config.h.in, Makefile.in, etc.) missing in the source repository.
7 # If you compile from a distribution tarball, you can skip this. Otherwise,
8 # make sure that you have Autoconf, Automake, Libtool, and pkg-config
9 # installed on your system, and that the corresponding *.m4 files are visible
10 # to the aclocal. The latter can be achieved by using packages shipped by
11 # your OS, or by installing custom versions of all four packages to the same
12 # prefix. Otherwise, you may need to invoke autoreconf with the appropriate
13 # -I options to locate the required *.m4 files.
15 autoreconf -i
17 echo
18 echo "Ready to run './configure'."