Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2019-03-21 06:25:10 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-03-23 17:55:43 +0300
commitaff75ffdb38821109259f578f33ceb7dd243e0be (patch)
tree36fb3074e2553b6f580b1491c22e6420b9a46d23 /config.m4
parent52bae8abb951605d8dcbd4151a90b845fd05068b (diff)
We're only compatible with PHP7 now \o/
This update fixes merge conflicts that would have prevented us from merging the msgpack PR (#1050).
Diffstat (limited to 'config.m4')
-rw-r--r--config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config.m4 b/config.m4
index 0a410bb9..c1f793c8 100644
--- a/config.m4
+++ b/config.m4
@@ -38,7 +38,7 @@ dnl Check for igbinary
elif test -f "$phpincludedir/ext/igbinary/igbinary.h"; then
igbinary_inc_path="$phpincludedir"
else
- for i in php php4 php5 php6 php7; do
+ for i in php php7; do
if test -f "$prefix/include/$i/ext/igbinary/igbinary.h"; then
igbinary_inc_path="$prefix/include/$i"
fi
@@ -117,7 +117,7 @@ dnl Check for msgpack
elif test -f "$phpincludedir/ext/msgpack/php_msgpack.h"; then
msgpack_inc_path="$phpincludedir"
else
- for i in php php4 php5 php6 php7; do
+ for i in php php7; do
if test -f "$prefix/include/$i/ext/msgpack/php_msgpack.h"; then
msgpack_inc_path="$prefix/include/$i"
fi