|
One trivial way to solve this: stop using the old Mac OS X dynamic loader functionality, and use 'dlopen'. According to the Apple developer documentation 'dlopen' is the preferred way to load modules, and has support in Mac OS X 10.3 and later. In 10.4 it's supposed to be faster than NSLinkModule too. So unless you want to support OS X 10.2.8 there's no pressing reason to keep using NSLinkModule et. al. I've undefine LUA_USE_DYLD and define LUA_USE_DLOPEN in luaconf.h. This works just fine. Gé On Apr 2, 2007, at 2:49 PM, Asko Kauppi wrote:
-- Gé Weijers |