summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 6a646c4e155634238d3fb03b34aeee80ddb3a560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /bin/sh

if ! [ -e libev/ev++.h ]; then
   cat <<EOF
**
** libev/ directory is missing
**
** you need a checkout of libev (http://software.schmorp.de/pkg/libev.html)
** in the top-level build directory.
**
EOF
   exit 1
fi

if ! [ -e libptytty/ptytty.m4 ]; then
   cat <<EOF
**
** libptytty/ directory is missing
**
** you need a checkout of libptytty (http://software.schmorp.de/pkg/libptytty.html)
** in the top-level build directory.
**
EOF
   exit 1
fi

if autoheader && autoconf; then
	rm -rf autom4te.cache
	echo "Now run ./configure"
fi