help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] Smalltalk on Solaris 8 x86


From: Bonz
Subject: Re: [Help-smalltalk] Smalltalk on Solaris 8 x86
Date: Sat, 17 Feb 2001 10:28:00 +0100

> Smalltalk-1.95.1 can be built on Solaris 8 x86 with the
> following modifications in libgst/heap.c

Thank you very much!!! And congratulations for finding the bug.

> 399,401d398
> <     true,  -256, -256, 640,   /* try 256 Mb before the higher address */
> <     true,  -128, -256, 512,   /* try 128 Mb before the higher address */
> <     true,  -64,  -256, 448,   /* try 64 Mb before the higher address */

What's the reason why you deleted these? (I have put #if 0 around them).

> and i18n/tables.sh:
> ------------------------------------------------------------------------
> 54,55d53
> < test -f $unicode_file || exec $0
> < test -f $st_file || exec $0
> ------------------------------------------------------------------------
> (test -f does not like an empty argument on Solaris)

I changed these to

test -z "$unicode_file" && exec $0
test -f "$unicode_file" || exec $0

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]