File: configure.in

package info (click to toggle)
stow 1.3.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 584 kB
  • ctags: 3
  • sloc: sh: 486; perl: 452; makefile: 59
file content (22 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dnl Process this file with Autoconf to produce configure

AC_INIT(stow.in)

PACKAGE=stow
VERSION=1.3.3
AM_INIT_AUTOMAKE(stow, $VERSION)
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)

AC_ARG_PROGRAM

AC_PROG_INSTALL

AC_PATH_PROGS(PERL, perl perl5, false)

if test "x$PERL" = xfalse
then
  echo 'WARNING: Perl not found; you must edit line 1 of `stow'"'"
fi

AC_OUTPUT(Makefile stow)