'gmake' port broken after (due to ?) GCC 3.2 import

2002-09-02 Thread Nickolay Dudorov

Today (after GCC 3.2 import and makeworld) I
try to upgrade 'gmake' port and resulting 'gmake' command
dumps core in the libc's 'qsort'.

When I make 'gmake' without --with-included-gettext
option it work - at least I can make 'databases/gdbm' port with
it (which can be made without USE_GMAKE also :-).

N.Dudorov


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: 'gmake' port broken after (due to ?) GCC 3.2 import

2002-09-02 Thread Alexander Kabaev

Not a GCC fault. The bug is in internal gettext library gmake is linked
with. I looked into read_alias_file function and I simply cannot believe
what I am seeing there. Do they really believe malloc is supposed to
resize memory in-place all the time? Look what happens with map[0-n]
elements every time they reallocate their 'string_space' to accomodate
(n+1)th entry.

Building gmake without  --with-included gettext sugddenly seems like a
very good idea for me.

-- 
Alexander Kabaev

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: 'gmake' port broken after (due to ?) GCC 3.2 import

2002-09-02 Thread Alexander Kabaev

On Mon, 2 Sep 2002 13:06:31 -0400
Alexander Kabaev [EMAIL PROTECTED] wrote:
Do they really believe malloc
^^^ I meant realloc here.
-- 
Alexander Kabaev

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: 'gmake' port broken after (due to ?) GCC 3.2 import

2002-09-02 Thread Christian Weisgerber

Alexander Kabaev [EMAIL PROTECTED] wrote:

 Not a GCC fault. The bug is in internal gettext library gmake is linked
 with. I looked into read_alias_file function and I simply cannot believe
 what I am seeing there.

PR ports/41075.

-- 
Christian naddy Weisgerber  [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message