source: trunk/essentials/app-shells/bash/lib/termcap/grot/configure.in@ 3280

Last change on this file since 3280 was 3228, checked in by bird, 19 years ago

bash 3.1

File size: 607 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(termcap.h)
3
4AC_ARG_ENABLE(install-termcap,
5[ --enable-install-termcap install the termcap data file],
6[if test $enableval = yes; then
7 installdata=install-data uninstalldata=uninstall-data
8 fi])
9AC_SUBST(installdata)dnl
10AC_SUBST(uninstalldata)dnl
11
12AC_ARG_WITH(termcap,
13[ --with-termcap=FILE use data file FILE instead of /etc/termcap],
14termcapfile=$withval, termcapfile=/etc/termcap)
15AC_SUBST(termcapfile)dnl
16
17AC_PROG_CC
18AC_PROG_RANLIB
19AC_PROG_INSTALL
20AC_HAVE_HEADERS(string.h unistd.h)
21AC_STDC_HEADERS
22
23AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.