mirror of
https://github.com/samba-team/samba.git
synced 2025-02-10 13:57:47 +03:00
autoconf versions metze (This used to be commit 9fa83ca022f2ca2e9e5d3d738beefcf9f90cfcff)
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
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
|