File: autogen.sh

package info (click to toggle)
rxvt-unicode 9.22-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,476 kB
  • ctags: 5,351
  • sloc: ansic: 44,050; cpp: 18,621; sh: 3,235; perl: 2,972; makefile: 584
file content (18 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /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)
** in the top-level build directory.
**
EOF
   exit 1
fi

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