summaryrefslogtreecommitdiff
path: root/ext/interbase/php_ibase_udf.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-20 21:37:19 +0200
committerAnatol Belski <ab@php.net>2014-09-20 21:37:19 +0200
commitfb17d6516d65c870cd47354598f0daf5d17f1df7 (patch)
tree00a84c3085bac850cf1960ebbca2c82efca03ae4 /ext/interbase/php_ibase_udf.c
parentb3aebda9eaf55706af2e21178f229a171725a168 (diff)
parent2fc1a1dce557875d029f16d58bd3d4cd22af54fb (diff)
downloadphp-git-fb17d6516d65c870cd47354598f0daf5d17f1df7.tar.gz
Merge remote-tracking branch 'origin/master' into native-tls
* origin/master: fixed copying of the struct as it's not being modified avoid strlen usage in loop Removes accidentally added files. Reverts some unwanted changes Deletes patch leftovers Replaces php5 with php7, without whitespace changes.
Diffstat (limited to 'ext/interbase/php_ibase_udf.c')
-rw-r--r--ext/interbase/php_ibase_udf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/interbase/php_ibase_udf.c b/ext/interbase/php_ibase_udf.c
index 32747ab4ec..4b47fbcfb6 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);
}
-