Blame autogen.sh

Packit d28291
#!/bin/sh
Packit d28291
set -e
Packit d28291
Packit d28291
# This script creates (or regenerates) configure (as well as aclocal.m4,
Packit d28291
# config.h.in, Makefile.in, etc.) missing in the source repository.
Packit d28291
#
Packit d28291
# If you compile from a distribution tarball, you can skip this.  Otherwise,
Packit d28291
# make sure that you have Autoconf, Automake, Libtool, and pkg-config
Packit d28291
# installed on your system, and that the corresponding *.m4 files are visible
Packit d28291
# to the aclocal.  The latter can be achieved by using packages shipped by
Packit d28291
# your OS, or by installing custom versions of all four packages to the same
Packit d28291
# prefix.  Otherwise, you may need to invoke autoreconf with the appropriate
Packit d28291
# -I options to locate the required *.m4 files.
Packit d28291
Packit d28291
autoreconf -i
Packit d28291
Packit d28291
echo
Packit d28291
echo "Ready to run './configure'."