ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autogen.sh
Revision: 1.4
Committed: Fri Oct 13 17:13:48 2017 UTC (6 years, 8 months ago) by sf-exg
Content type: application/x-sh
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_26, rxvt-unicode-rel-9_25
Changes since 1.3: +12 -0 lines
Log Message:
autogen.sh: Add check for libptytty directory

Patch by Petr Vorel.

File Contents

# User Rev Content
1 root 1.1 #! /bin/sh
2    
3 root 1.2 if ! [ -e libev/ev++.h ]; then
4     cat <<EOF
5     **
6     ** libev/ directory is missing
7     **
8 sf-exg 1.3 ** you need a checkout of libev (http://software.schmorp.de/pkg/libev.html)
9 root 1.2 ** in the top-level build directory.
10     **
11     EOF
12     exit 1
13     fi
14    
15 sf-exg 1.4 if ! [ -e libptytty/ptytty.m4 ]; then
16     cat <<EOF
17     **
18     ** libptytty/ directory is missing
19     **
20     ** you need a checkout of libptytty (http://software.schmorp.de/pkg/libptytty.html)
21     ** in the top-level build directory.
22     **
23     EOF
24     exit 1
25     fi
26    
27 root 1.1 if autoheader && autoconf; then
28     rm -rf autom4te.cache
29     echo "Now run ./configure"
30     fi