Wichert Akkerman | 0405743 | 1999-06-10 14:38:31 +0000 | [diff] [blame] | 1 | #! /bin/sh |
| 2 | |
Wichert Akkerman | 15dea97 | 1999-10-06 13:06:34 +0000 | [diff] [blame] | 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 | |
Wichert Akkerman | 0405743 | 1999-06-10 14:38:31 +0000 | [diff] [blame] | 19 | autoheader |
| 20 | autoconf |
Wichert Akkerman | 2f473da | 1999-11-01 19:53:31 +0000 | [diff] [blame] | 21 | |
Wichert Akkerman | 0405743 | 1999-06-10 14:38:31 +0000 | [diff] [blame] | 22 | |