From 14796f529eb41b0ffda3435b5bd8d2e661622e6e Mon Sep 17 00:00:00 2001 From: Alexander Traud <pabstraud@compuserve.com> Date: Fri, 16 Feb 2018 19:30:45 +0100 Subject: [PATCH] BuildSystem: Allow newer autotools on OpenBSD. ASTERISK-27683 Change-Id: I5ec9dafbb0c16b6f2740c641980bc2eaaf995624 --- bootstrap.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index fe39ea203d..550652bd2f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -18,8 +18,9 @@ case `uname -sr` in MY_AM_VER= ;; OpenBSD*) - export AUTOCONF_VERSION=2.63 - export AUTOMAKE_VERSION=1.9 + # pkg_add autoconf%2.63 automake%1.9 metaauto + [ -z "$AUTOCONF_VERSION" ] && export AUTOCONF_VERSION=2.63 + [ -z "$AUTOMAKE_VERSION" ] && export AUTOMAKE_VERSION=1.9 ;; *'BSD'*) MY_AC_VER=-2.62 -- GitLab