diff options
author | Florian MARGAINE <florian@margaine.com> | 2014-09-20 10:01:44 +0200 |
---|---|---|
committer | Florian MARGAINE <florian@margaine.com> | 2014-09-20 10:01:44 +0200 |
commit | cf0303e7824c3e20e9db240f9d4e4b154cc2a72d (patch) | |
tree | 89aa4aab62b422615a7441552b3a0176b22b2b0d /ext/interbase/php_ibase_udf.c | |
parent | 25f5ba94aca1e89ee5f0c66513e58826afa3b853 (diff) | |
download | php-git-cf0303e7824c3e20e9db240f9d4e4b154cc2a72d.tar.gz |
Replaces php5 with php7, without whitespace changes.
Diffstat (limited to 'ext/interbase/php_ibase_udf.c')
-rw-r--r-- | ext/interbase/php_ibase_udf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/interbase/php_ibase_udf.c b/ext/interbase/php_ibase_udf.c index 5a53df8b6b..87d25ac531 100644 --- a/ext/interbase/php_ibase_udf.c +++ b/ext/interbase/php_ibase_udf.c @@ -84,7 +84,7 @@ * * gcc -shared `php-config --includes` `php-config --ldflags` \ * `php-config --libs` -o php_ibase_udf.so php_ibase_udf.c \ -* /usr/lib/libphp5.a +* /usr/lib/libphp7.a * * If you use the super server, you should also link against the embedded * library, but be sure to enable thread safety, as the super server is @@ -404,4 +404,3 @@ void udf_call_php8(char *name, PARAMDSC *r, PARAMDSC *arg1, PARAMDSC *arg2, PARA PARAMDSC *args[8] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }; call_php(name, r, 8, args); } - |