Skip to content
This repository was archived by the owner on Jul 7, 2018. It is now read-only.

Commit 1a4456e

Browse files
committed
Simplify php vernum detection
1 parent 80ce2e2 commit 1a4456e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if test "$PHP_REF" != "no"; then
99

1010
AC_MSG_CHECKING([Check for supported PHP versions])
1111
PHP_REF_FOUND_VERSION=`${PHP_CONFIG} --version`
12-
PHP_REF_FOUND_VERNUM=`echo "${PHP_REF_FOUND_VERSION}" | $AWK 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 100 + [$]2) * 100 + [$]3;}'`
12+
PHP_REF_FOUND_VERNUM=`${PHP_CONFIG} --vernum`
1313

1414
if test "$PHP_REF_FOUND_VERNUM" -lt "70003"; then
1515
AC_MSG_ERROR([not supported. Need a PHP version >= 7.0.3 (found $PHP_REF_FOUND_VERSION)])

0 commit comments

Comments
 (0)