search for: nbdkit_plugindir

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

2019 Feb 08
1
Re: [PATCH nbdkit] Add support for writing plugins in Rust.
...plugin])], > + [], > + [enable_rust=yes]) > +AM_CONDITIONAL([HAVE_RUST], > + [test "x$CARGO" != "xno" && test "x$enable_ruby" != "xno"]) Copy-and-paste bug: s/ruby/rust/ > @@ -950,8 +951,8 @@ which defines C<$(NBDKIT_PLUGINDIR)> in automake-generated Makefiles. > =head1 WRITING PLUGINS IN OTHER PROGRAMMING LANGUAGES > > You can also write nbdkit plugins in Lua, OCaml, Perl, Python, Ruby, > -shell script or Tcl. Other programming languages may be offered in > -future. > +Rust, shell script or Tcl...
2019 Feb 08
3
[PATCH nbdkit] Add support for writing plugins in Rust.
This adds very rough support for writing nbdkit plugins in Rust. This is not very idiomatic -- essentially we're handling the direct C calls from nbdkit in Rust. We have to use ‘unsafe’ in a few places because there's no way to tell the Rust code that nbdkit satisfies guarantees (eg. around thread safety, always returning leaked pointers back to the close function, always doing bounds
2019 Feb 08
0
[PATCH nbdkit] Add support for writing plugins in Rust.
...ugin.pod @@ -66,6 +66,7 @@ L<nbdkit-ocaml-plugin(3)>, L<nbdkit-perl-plugin(3)>, L<nbdkit-python-plugin(3)>, L<nbdkit-ruby-plugin(3)>, +L<nbdkit-rust-plugin(3)>, L<nbdkit-sh-plugin(3)>, L<nbdkit-tcl-plugin(3)>. @@ -950,8 +951,8 @@ which defines C<$(NBDKIT_PLUGINDIR)> in automake-generated Makefiles. =head1 WRITING PLUGINS IN OTHER PROGRAMMING LANGUAGES You can also write nbdkit plugins in Lua, OCaml, Perl, Python, Ruby, -shell script or Tcl. Other programming languages may be offered in -future. +Rust, shell script or Tcl. Other programming languages...
2018 Jul 01
2
[PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
..., see: L<nbdkit-ocaml-plugin(3)>, L<nbdkit-perl-plugin(3)>, L<nbdkit-python-plugin(3)>, -L<nbdkit-ruby-plugin(3)>. +L<nbdkit-ruby-plugin(3)>, +L<nbdkit-tcl-plugin(3)>. =head1 C<#define NBDKIT_API_VERSION 2> @@ -849,14 +850,15 @@ which defines C<$(NBDKIT_PLUGINDIR)> in automake-generated Makefiles. =head1 WRITING PLUGINS IN OTHER PROGRAMMING LANGUAGES -You can also write nbdkit plugins in OCaml, Perl, Python or Ruby. +You can also write nbdkit plugins in OCaml, Perl, Python, Ruby or Tcl. Other programming languages may be offered in future. For m...