forked from Warzone2100/warzone2100
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathax_with_perl.m4
36 lines (35 loc) · 1.13 KB
/
ax_with_perl.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ===========================================================================
# http://autoconf-archive.cryp.to/ax_with_perl.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_WITH_PERL([VALUE-IF-NOT-FOUND],[PATH])
#
# DESCRIPTION
#
# Locates an installed Perl binary, placing the result in the precious
# variable $PERL. Accepts a present $PERL, then --with-perl, and failing
# that searches for perl in the given path (which defaults to the system
# path). If perl is found, $PERL is set to the full path of the binary; if
# it is not found $PERL is set to VALUE-IF-NOT-FOUND if provided,
# unchanged otherwise.
#
# A typical use could be the following one:
#
# AX_WITH_PERL
#
# LAST MODIFICATION
#
# 2008-05-05
#
# COPYLEFT
#
# Copyright (c) 2008 Francesco Salvestrini <[email protected]>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice
# and this notice are preserved.
AC_DEFUN([AX_WITH_PERL],[
AX_WITH_PROG(PERL,perl,$1,$2)
])