From fff58b463a3adc76f8aaf8ddb82356d7c8a8bef3 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 31 Jul 2014 14:13:21 +0200 Subject: [PATCH] error out on missing pecl dependencies --- config9.m4 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config9.m4 b/config9.m4 index ce63132..84145cb 100644 --- a/config9.m4 +++ b/config9.m4 @@ -353,6 +353,8 @@ dnl ---- AC_DEFINE([PHP_HTTP_HAVE_PHP_RAPHF_H], [1], [Have ext/raphf support]) PHP_ADD_INCLUDE([$HTTP_EXT_RAPHF_INCDIR]) fi + ], [ + AC_MSG_ERROR([Please install pecl/raphf]) ]) dnl ---- @@ -379,6 +381,8 @@ dnl ---- AC_DEFINE([PHP_HTTP_HAVE_PHP_PROPRO_H], [1], [Have ext/propro support]) PHP_ADD_INCLUDE([$HTTP_EXT_PROPRO_INCDIR]) fi + ], [ + AC_MSG_ERROR([Please install pecl/propro]) ]) PHP_ARG_WITH([http-shared-deps], [whether to depend on extensions which have been built shared], -- 2.30.2