"Fossies" - the Fresh Open Source Software Archive

Member "termcap-1.3.1/configure.in" (26 Jul 1995, 607 Bytes) of package /linux/misc/old/termcap-1.3.1.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 dnl Process this file with autoconf to produce a configure script.
    2 AC_INIT(termcap.h)
    3 
    4 AC_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])
    9 AC_SUBST(installdata)dnl
   10 AC_SUBST(uninstalldata)dnl
   11 
   12 AC_ARG_WITH(termcap,
   13 [  --with-termcap=FILE     use data file FILE instead of /etc/termcap],
   14 termcapfile=$withval, termcapfile=/etc/termcap)
   15 AC_SUBST(termcapfile)dnl
   16 
   17 AC_PROG_CC
   18 AC_PROG_RANLIB
   19 AC_PROG_INSTALL
   20 AC_HAVE_HEADERS(string.h unistd.h)
   21 AC_STDC_HEADERS
   22 
   23 AC_OUTPUT(Makefile)