blob: 01703476ec9678138773f36b916ea6f72b3a9e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
AC_PREREQ(2.59)
AC_INIT([youri-submit], [0.10])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PATH_PROG([PERL],[perl])
if test -z $PERL; then
AC_MSG_ERROR([perl not found, aborting])
fi
AC_PATH_PROG([POD2MAN],[pod2man])
if test -z $POD2MAN; then
AC_MSG_ERROR([pod2man not found, aborting])
fi
perllibdir=$datadir/youri/lib
AC_SUBST(perllibdir)
AC_CONFIG_FILES([Makefile bin/Makefile lib/Makefile etc/Makefile t/Makefile])
AC_OUTPUT
|