12cd2f6a1d
configure.ac already exists. Its timestamp doesn't need to be updated. autoreconf takes care of the timestamps. Since "foreign" is used in Makefile.am, no standard GNU files are required. Distributing empty files like README could be disappointing for the users.
32 lines
389 B
Bash
Executable File
32 lines
389 B
Bash
Executable File
#!/bin/sh
|
|
|
|
which autoconf
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install autoconf"
|
|
exit 1
|
|
fi
|
|
|
|
which automake
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install automake"
|
|
exit 1
|
|
fi
|
|
|
|
which libtool || which libtoolize
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install libtool"
|
|
exit 1
|
|
fi
|
|
|
|
which pkg-config
|
|
if ! test $? -eq 0
|
|
then
|
|
echo "error, install pkg-config"
|
|
exit 1
|
|
fi
|
|
|
|
autoreconf -fvi
|