Index: [thread] [date] [subject] [author]
  From: Marcus Sundberg <e94_msu@elixir.e.kth.se>
  To  : ggi-develop@eskimo.com
  Date: Thu, 20 Aug 1998 22:24:08 +0200

Re: Kgicon & the sysctl stuff

> The new sysctl stuff in fbcon-kgi.c broke it.  There is this undefined
> reference to "memset", and the thing won't insmod anymore.
> 
> ... 2 hours and much hair pulling later ...
> 
> Line 1587 where there is a "constructor expression", as follows :
> 
>         sysctl_subsys[idx] = (struct ctl_table)
>                         {idx+1, name, NULL, 0, 0555, c_leafs};
> 
> Not only is that not ANSI, it causes the above problem.  ARGH !!!
> Somebody please fix that.  I had hoped to get text modes working
> tonight, grumble grumble...

???
You mean your compiler inserts a memset() at that point?
I'd call that a severe bug... It surely works fine for me with 
pgcc 1.0.3. Well, I'll just convert it to use memcpy instead of
doing a direct assign then...

//Marcus

Index: [thread] [date] [subject] [author]