File pecl_http-3.0.1_debug.patch of Package php7-pecl_http (Revision 87a344204e3ba9b0dff0cdf4effb9c69)
Currently displaying revision 87a344204e3ba9b0dff0cdf4effb9c69, show latest
x
1
--- config9.m4.orig 2016-04-22 09:22:48.777700815 +0200
2
+++ config9.m4 2016-04-22 09:29:51.365701451 +0200
3
4
AC_MSG_CHECKING([for php_raphf.h])
5
HTTP_EXT_RAPHF_INCDIR=
6
for i in `echo $INCLUDES | $SED -e's/-I//g'` $abs_srcdir ../raphf; do
7
+ AC_MSG_CHECKING("Testing $i ...")
8
if test -d $i; then
9
+ echo "Directory $i exists..."
10
if test -f $i/php_raphf.h; then
11
+ AC_MSG_CHECKING("File $i/php_raphf.h found")
12
HTTP_EXT_RAPHF_INCDIR=$i
13
break
14
elif test -f $i/ext/raphf/php_raphf.h; then
15
+ AC_MSG_CHECKING("File $i/ext/raphf/php_raphf.h found")
16
HTTP_EXT_RAPHF_INCDIR=$i/ext/raphf
17
break
18
fi
19
20
AC_MSG_CHECKING([for php_propro.h])
21
HTTP_EXT_PROPRO_INCDIR=
22
for i in `echo $INCLUDES | $SED -e's/-I//g'` $abs_srcdir ../propro; do
23
+ AC_MSG_CHECKING("Testing $i ...")
24
if test -d $i; then
25
+ AC_MSG_CHECKING("Directory $i exists...")
26
if test -f $i/php_propro.h; then
27
+ AC_MSG_CHECKING("File $i/php_propro.h found")
28
HTTP_EXT_PROPRO_INCDIR=$i
29
break
30
elif test -f $i/ext/propro/php_propro.h; then
31
+ AC_MSG_CHECKING("File $i/ext/propro/php_propro.h found")
32
HTTP_EXT_PROPRO_INCDIR=$i/ext/propro
33
break
34
fi
35