diff options
author | Anatol Belski <ab@php.net> | 2014-09-20 19:46:44 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-09-20 19:46:44 +0200 |
commit | 132cd8be0d13eaeee200cfa09b0596f6619c6a7e (patch) | |
tree | 7a928718769260e60252c0e048d2f10d0cd94f8c /ext/interbase/php_ibase_udf.c | |
parent | 763bfb4f3b0e66d5a961f9f367aa86e9f9da262e (diff) | |
parent | 268bcdc1cb668f76b85a84bc4d32194548cc185a (diff) | |
download | php-git-132cd8be0d13eaeee200cfa09b0596f6619c6a7e.tar.gz |
Merge branch 'pull-request/805'
* pull-request/805:
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.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 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); } - |