[Mono-list] libMonoPosixHelper.dylib?

2014-11-05 Thread Maury Markowitz
The OSX code I'm using will need to reference MonoPosixHelper. Poking about on the 'net, I see that there should be something called libMonoPosixHelper.dylib, and that Mono should map that onto MonoPosixHelper.dll for me. However, I cannot find this libMonoPosixHelper.dylib anywhere. It was not

Re: [Mono-list] libMonoPosixHelper.dylib?

2014-11-05 Thread Maury Markowitz
On Nov 5, 2014, at 10:52 AM, Jonathan Pryor jonpr...@vt.edu wrote: Why do you need to reference libMonoPosixHelper.dylib? It has NO STABLE ABI; it is intended for use only from Mono.Posix.dll. It's not me, it's being called from Mono's WindowBase, specifically this line of code... [DllImport

Re: [Mono-list] libMonoPosixHelper.dylib?

2014-11-05 Thread Jonathan Pryor
On Nov 5, 2014, at 9:15 AM, Maury Markowitz maury.markow...@gmail.com wrote: The OSX code I'm using will need to reference MonoPosixHelper. Why do you need to reference libMonoPosixHelper.dylib? It has NO STABLE ABI; it is intended for use only from Mono.Posix.dll. However, I cannot find this

Re: [Mono-list] libMonoPosixHelper.dylib?

2014-11-05 Thread Jonathan Pryor
On Nov 5, 2014, at 11:19 AM, Maury Markowitz maury.markow...@gmail.com wrote: unzOpen2 is part of miniunzip, itself part of zlib. The zlib code appears to be in the MPH project essentially/completely unchanged. Of course I also have libz in /usr/lib on every device I'm targeting.

Re: [Mono-list] libMonoPosixHelper.dylib?

2014-11-05 Thread Maury Markowitz
On Nov 5, 2014, at 1:09 PM, Jonathan Pryor jonpr...@vt.edu wrote: Jon, thank you so much for your help here, I was despairing of ever getting this to work and now I feel I may have at least the possibility. libMonoPosixHelper.dylib has a copy of minzip for use in System.IO.Packaging/etc.