Any way to re-enable user DLL loading into ConTeXt, even
in the future, would be appreciated...

I have just uploaded dynamically linked luatex and luajittex.
I hope that you can again load your lua DLL modules in a few days.
Further, standard C functions can be used in ffi without
loading a C DLL. For example, my previous example can
be changed as follows:

%
% context test.tex
%
\starttext
\placeformula
\startformula
j_1(2.387) =
\startluacode
 local ffi = require("ffi")
 ffi.cdef[[
   double _j1(double x);
 ]]
 tex.print(ffi.C._j1(2.387))
\stopluacode
\stopformula
\stoptext

Best,
Akira

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to