]> granicus.if.org Git - strace/blob - cvsbuild
Merge Harald Böhme's solaris patches
[strace] / cvsbuild
1 #! /bin/sh
2
3 PROJECT=strace
4
5 DIE=0
6
7 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
8         echo
9         echo "You must have autoconf installed to compile $PROJECT."
10         echo "Download the appropriate package for your distribution,"
11         echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
12         DIE=1
13 }
14
15 if test "$DIE" -eq 1; then
16     exit 1
17 fi
18
19 autoheader
20 autoconf
21
22