aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf/m4
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-03-07 17:07:20 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-03-07 17:07:20 +0000
commit8c3d2580cbd52a91e85a27cc96301cbd5c281cee (patch)
tree1f5bd9ce0f6cf7cb8e767b9d520a57ffc2edfd50 /autoconf/m4
parent3c777947f4fdd94f061f8ac4a118a8db03da88a8 (diff)
downloadexternal_llvm-8c3d2580cbd52a91e85a27cc96301cbd5c281cee.zip
external_llvm-8c3d2580cbd52a91e85a27cc96301cbd5c281cee.tar.gz
external_llvm-8c3d2580cbd52a91e85a27cc96301cbd5c281cee.tar.bz2
configure: Don't require a perl interpreter to be present, LLVM's buildsystem doesn't depend on perl anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/m4')
-rw-r--r--autoconf/m4/path_perl.m416
1 files changed, 0 insertions, 16 deletions
diff --git a/autoconf/m4/path_perl.m4 b/autoconf/m4/path_perl.m4
deleted file mode 100644
index 406656c..0000000
--- a/autoconf/m4/path_perl.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-dnl Check for a reasonable version of Perl.
-dnl $1 - Minimum Perl version. Typically 5.006.
-dnl
-AC_DEFUN([LLVM_PROG_PERL], [
-AC_PATH_PROG(PERL, [perl], [none])
-if test "$PERL" != "none"; then
- AC_MSG_CHECKING(for Perl $1 or newer)
- if $PERL -e 'use $1;' 2>&1 > /dev/null; then
- AC_MSG_RESULT(yes)
- else
- PERL=none
- AC_MSG_RESULT(not found)
- fi
-fi
-])
-