>> In general are the configure switches used in the official builds
>> available somewhere? I mean not just for the Mac builds.
>
> The official Sun builds do not use configure, but rather some home-brown
> mechanism ("setsolar"), for which the relevant data is taken from the file
> mentioned above (and Sun Release Engineering can probably tell you more
> about that file format and the exact mechanisms at play).
That is nice to know!
I have been able to make some progress. Python extensions work fine
for me with this patch to pyuno/source/module/pyuno_dlopenwrapper.cxx:
- void* h = dlopen (SAL_DLLPREFIX "pyuno" SAL_DLLEXTENSION ,
RTLD_NOW | RTLD_GLOBAL);
+ void* h = dlopen
("/Users/cyhawk/Desktop/OpenOffice.org.app/Contents/basis-link/program/"
SAL_DLLPREFIX "pyuno" SAL_DLLEXTENSION , RTLD_NOW | RTLD_GLOBAL);
This is of course not a general fix :). Any idea why dlopen does not
find libpyuno.dylib in the same folder that this code (pyuno.so) is
executed from?
It is also nice that with this modification my build of pyuno works
great with my 2.5 system python. This means that this issue has a very
simple fix, that could hopefully find its way to a release soon.
Regards,
Daniel
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]