summaryrefslogtreecommitdiff
path: root/source4/build/m4/check_perl.m4
blob: 34a7e5e7699de2bcf23cd0976e35fffbe3775222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dnl SMB Build Environment Perl Checks
dnl -------------------------------------------------------
dnl  Copyright (C) Stefan (metze) Metzmacher 2004
dnl  Released under the GNU GPL
dnl -------------------------------------------------------
dnl

AC_PATH_PROG(PERL, perl)
if test x"$PERL" = x""; then
	AC_MSG_WARN([No version of perl was not found!])
	AC_MSG_ERROR([Please install perl from http://www.perl.com/])
fi
if test x"$debug" = x"yes";then
	PERL="$PERL -W"
fi

PIDL_ARGS=""
AC_SUBST(PIDL_ARGS)