Re: Haiku port status

2008-11-18 Thread Ingo Weinhold
On 2008-11-15 at 12:42:20 [+0100], Bruno Haible <[EMAIL PROTECTED]> wrote: Sorry for the late reply. I'm just back from a rather busy business trip and trying to catch up with my emails. > Ingo Weinhold [are you 'bonefish'?] wrote: I am indeed. On 2008-11-16 at 18:39:

Re: [PATCH] Some Haiku Patches

2008-11-10 Thread Ingo Weinhold
On 2008-11-10 at 12:01:19 [+0100], Bruno Haible <[EMAIL PROTECTED]> wrote: > Ingo Weinhold wrote: > > > - configure packages with > > > "./configure --host=i586-pc-beos --build=i586-pc-beos > > > --prefix=/boot/home/config" > >

Re: [PATCH 4/4] Add support for Haiku.

2008-11-09 Thread Ingo Weinhold
On 2008-11-10 at 03:32:36 [+0100], Bruno Haible <[EMAIL PROTECTED]> wrote: > Ingo Weinhold wrote: > > Use the glibc 1 implementation in Haiku too. Haiku actually uses a newer > > glibc version, but the libio interface has been butchered to be binary > > compatible wi

Re: [PATCH] Some Haiku Patches

2008-11-09 Thread Ingo Weinhold
On 2008-11-10 at 02:34:13 [+0100], Bruno Haible <[EMAIL PROTECTED]> wrote: > Ingo Weinhold wrote: > > here comes a short Haiku related patch series. > > Thanks. To reproduce this, I figured out that one has to > - download one of the recent daily built disk images fro

Re: [PATCH 2/4] Use SA_ONSTACK even if SA_SIGINFO is unavailable.

2008-11-05 Thread Ingo Weinhold
Eric Blake wrote: > Ingo Weinhold gmx.de> writes: > > > > If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at least > > allow for a somewhat controlled program termination on stack overflow. E.g. > > in Haiku this prevents the debug server

[PATCH 4/4] Add support for Haiku.

2008-11-05 Thread Ingo Weinhold
Use the glibc 1 implementation in Haiku too. Haiku actually uses a newer glibc version, but the libio interface has been butchered to be binary compatible with the glibc 1 used by BeOS. Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]> --- lib/freadahead.c |3 ++- 1 files chan

[PATCH 3/4] Haiku is UTF-8 only as well.

2008-11-05 Thread Ingo Weinhold
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]> --- lib/config.charset |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config.charset b/lib/config.charset index 62b4e94..83434bf 100755 --- a/lib/config.charset +++ b/lib/config.charset @@ -478,8 +478,8 @

[PATCH 2/4] Use SA_ONSTACK even if SA_SIGINFO is unavailable.

2008-11-05 Thread Ingo Weinhold
If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at least allow for a somewhat controlled program termination on stack overflow. E.g. in Haiku this prevents the debug server dialog box from popping up. Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]> --- lib/c-sta

[PATCH 1/4] O_BINARY and O_TEXT are defined and have no effect in

2008-11-05 Thread Ingo Weinhold
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]> --- lib/binary-io.h |5 +++-- lib/fcntl.in.h |4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/binary-io.h b/lib/binary-io.h index 9bfddf1..518e464 100644 --- a/lib/binary-io.h +++ b/lib/binary-io.h @@

[PATCH] Some Haiku Patches

2008-11-05 Thread Ingo Weinhold
Howdy, here comes a short Haiku related patch series. CU, Ingo