diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-01 15:56:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:24 -0500 |
commit | c6dfa0cc3dee62374bc1e5d6554fbcd1a8891a64 (patch) | |
tree | 755ed5c9bc89fbafa628e462a4b53e595495e9b3 /source4/build/smb_build/check_perl.m4 | |
parent | 9318fdbb3346da0374ab859055ea399dff86a861 (diff) | |
download | samba-c6dfa0cc3dee62374bc1e5d6554fbcd1a8891a64.tar.gz samba-c6dfa0cc3dee62374bc1e5d6554fbcd1a8891a64.tar.bz2 samba-c6dfa0cc3dee62374bc1e5d6554fbcd1a8891a64.zip |
r968: use sinlcude() and no function, that's more portable between
autoconf versions
metze
(This used to be commit 9fa83ca022f2ca2e9e5d3d738beefcf9f90cfcff)
Diffstat (limited to 'source4/build/smb_build/check_perl.m4')
-rw-r--r-- | source4/build/smb_build/check_perl.m4 | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/source4/build/smb_build/check_perl.m4 b/source4/build/smb_build/check_perl.m4 index ff43650b3e..5f5f614f84 100644 --- a/source4/build/smb_build/check_perl.m4 +++ b/source4/build/smb_build/check_perl.m4 @@ -4,25 +4,12 @@ dnl Copyright (C) Stefan (metze) Metzmacher 2004 dnl Released under the GNU GPL dnl ------------------------------------------------------- dnl -dnl _SMB_BUILD_CHECK_PERL( -dnl 1:dummy -dnl ) -dnl ####################################################### -dnl ### And now the implementation ### -dnl ####################################################### - -dnl _SMB_BUILD_CHECK_PERL( -dnl 1:dummy -dnl ) -AC_DEFUN([_SMB_BUILD_CHECK_PERL], -[ - 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 -]) +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 |