2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

search for Perl at configure time, for use by the system

test scripts
This commit is contained in:
Andreas Gustafsson
2000-06-13 17:34:28 +00:00
parent 195c06df3e
commit 3ecf3394e3
3 changed files with 231 additions and 173 deletions

View File

@@ -33,6 +33,9 @@ SIGNER=$TOP/bin/dnssec/dnssec-signzone
KEYSIGNER=$TOP/bin/dnssec/dnssec-signkey KEYSIGNER=$TOP/bin/dnssec/dnssec-signkey
KEYSETTOOL=$TOP/bin/dnssec/dnssec-makekeyset KEYSETTOOL=$TOP/bin/dnssec/dnssec-makekeyset
# PERL will be an empty string if no perl interpreter was found.
PERL=@PERL@
SUBDIRS="xfer dnssec xferquota" SUBDIRS="xfer dnssec xferquota"
export NAMED DIG KEYGEN SIGNER KEYSIGNER KEYSETTOOL export NAMED DIG KEYGEN SIGNER KEYSIGNER KEYSETTOOL

392
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
dnl SOFTWARE. dnl SOFTWARE.
AC_REVISION($Revision: 1.146 $) AC_REVISION($Revision: 1.147 $)
AC_PREREQ(2.13) AC_PREREQ(2.13)
@@ -48,6 +48,12 @@ esac
AC_PATH_PROGS(ETAGS, etags emacs-etags) AC_PATH_PROGS(ETAGS, etags emacs-etags)
AC_SUBST(ETAGS) AC_SUBST(ETAGS)
#
# Perl is optional; it is used only by some of the system test scripts.
#
AC_PATH_PROGS(PERL, perl5 perl)
AC_SUBST(PERL)
# #
# Special processing of paths depending on whether --prefix, # Special processing of paths depending on whether --prefix,
# --sysconfdir or --localstatedir arguments were given. What's # --sysconfdir or --localstatedir arguments were given. What's
@@ -1003,6 +1009,7 @@ AC_OUTPUT(
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile bin/tests/system/Makefile
bin/tests/system/conf.sh
bin/tests/headerdep_test.sh bin/tests/headerdep_test.sh
bin/dnssec/Makefile bin/dnssec/Makefile
) )