Hi All,
I've just discovered that HP-UX's mmap implementation doesn't define
MAP_ANON, it only defines MAP_ANONYMOUS. linux defined both, as does
solaris (and solaris's manpage actually states that MAP_ANON is
deprecated), but MacOS X seems to only define MAP_ANON
MAP_ANON is only used in two
Alexandre Julliard <[EMAIL PROTECTED]> wrote on 10/18/2004 03:11:30 PM:
> It's probably better to do that at the configure level by adding it to
> LDDLLFLAGS in the case that needs it.
Ok, that makes sense - I didn't realize we already had a hook directly
from configure into winegcc.
I'll just s
Alexandre Julliard <[EMAIL PROTECTED]> wrote on 10/15/2004 12:03:53 AM:
> Actually it could be argued that winegcc should add -fPIC itself if
> it's needed for linking, users shouldn't have to worry about that.
That makes a lot of sense - I'll mod the patch to do that... Should I
make it platfo
Pierre d'Herbemont <[EMAIL PROTECTED]> wrote on 10/10/2004 01:50:39 PM:
> Warren,
>
> On Mac OS X/Darwin .so and .dylib extensions are both used. In fact
> .dylib extension is used for dynamic libraries (libwine*.dylib) whereas
> dll.so and exe.so extensions are used for the dlls and the exe. S
Hi all,
Another change I had to make for HPUX that I'm not 100% sure about:
The HPUX linker gets quite unhappy unless the gcc link line inside of
winegcc is fed -fPIC. The problem is that the collect2 phase builds it's
own temporary object file that gets included in the final link, and if
tha
Hi all,
I'm still working on getting wine going on hpux, and I thought I should
submit patches for more of the changes I've made. There were a couple of
places in winegcc where there were some assumptions made about .so being
the shared library extension and .exe.so being the executable suffix
(BTW, apologies for the Firewall/CSI thing in my previous message's
"From:" line - they've been mucking about with our external mail server,
and it messed something up - Hope people didn't get bounces if they tried
replying directly - hopefully it'll be fixed for this message.)
Alexandre Jullia