From 314e7cab01a08fb52b5d88f78149bb62cddc9439 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Mon, 5 Aug 2019 08:58:26 +0300 Subject: [PATCH] Remove autoconf call [skip appveyor] --- .ci/build.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.ci/build.sh b/.ci/build.sh index b93ecc4477e..d4b21b65303 100755 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -44,20 +44,6 @@ cd ext || exit 1 phpize if [[ -n ${REPORT_COVERAGE+x} ]] && [[ "$REPORT_COVERAGE" = "1" ]]; then - # The ltmain.sh which bundled with PHP it's from libtool 1.5.26. - # However, the version of libtool that claims to no longer remove - # ".gcno" profiler information is libtool 2.2.6. The fix is probably - # in later libtool versions as well. - if [[ "$(uname -s 2>/dev/null)" = "Darwin" ]]; then - # macOS - LIBTOOLIZE_BIN=$(command -v glibtoolize 2>/dev/null) - else - # Linux, Gentoo, etc - LIBTOOLIZE_BIN=$(command -v libtoolize 2>/dev/null) - fi - - aclocal && ${LIBTOOLIZE_BIN} --copy --force && autoheader && autoconf - CFLAGS=${CFLAGS//-O[0-9s]/} CXXFLAGS=${CXXFLAGS//-O[0-9s]/} LDFLAGS=${LDFLAGS//--coverage/}