search for: php_fe

Displaying 4 results from an estimated 4 matches for "php_fe".

Did you mean: pfp_fw
2017 Oct 04
0
[PATCH 2/9] ocaml: Replace pattern matching { field = field } with { field }.
...);\n" name + fun { name } -> pr "PHP_FUNCTION (guestfs_%s);\n" name ) (actions |> external_functions |> sort); pr "\ @@ -199,7 +199,7 @@ static zend_function_entry guestfs_php_functions[] = { "; List.iter ( - fun { name = name } -> pr " PHP_FE (guestfs_%s, NULL)\n" name + fun { name } -> pr " PHP_FE (guestfs_%s, NULL)\n" name ) (actions |> external_functions |> sort); pr " { NULL, NULL, NULL } @@ -271,7 +271,7 @@ PHP_FUNCTION (guestfs_last_error) (* Now generate the PHP bindings for each actio...
2017 Oct 04
11
[PATCH 0/9] build: Require OCaml >= 4.02.
Per my previous email: https://www.redhat.com/archives/libguestfs/2017-September/msg00203.html I'd like to talk about requiring a more modern version of the OCaml compiler. These commits show some of the code changes which would be possible with OCaml >= 3.12 [which it turns out we already require by accident] and also with OCaml >= 4.02. The latter is my favoured option. Rich.
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...t.iter ( fun { name = name } -> pr "PHP_FUNCTION (guestfs_%s);\n" name - ) all_functions_sorted; + ) external_functions_sorted; pr "\ @@ -113,7 +113,7 @@ static zend_function_entry guestfs_php_functions[] = { List.iter ( fun { name = name } -> pr " PHP_FE (guestfs_%s, NULL)\n" name - ) all_functions_sorted; + ) external_functions_sorted; pr " { NULL, NULL, NULL } }; @@ -506,7 +506,7 @@ PHP_FUNCTION (guestfs_last_error) pr "}\n"; pr "\n" - ) all_functions_sorted + ) external_functions_sorted...
2016 Sep 02
6
[PATCH 0/4] generator: Some work to split large C files
By splitting up large C files we can make parallel compiles a bit faster. Rich.