gnucobol-users
[Top][All Lists]
Advanced

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

[open-cobol-list] first build


From: Richard Smith
Subject: [open-cobol-list] first build
Date: Wed Mar 10 18:56:03 2004

I've just built the current version of open-cobol on netbsd (current)
with gcc (3.3.3)

I had to make a couple of small changes to get it to compile, but
it seems to work so far.

Anyway, here are the changes I had to make.

diff -r1.144 fileio.c
179c179
<       fcntl (fileno (f->file), F_SETLK, &lock);
---
>       fcntl (fileno ((FILE*)f->file), F_SETLK, &lock);

(it was moaning about dereferencing the void*)

diff -r1.20 screenio.c
25a26,28
> #if HAVE_LIBNCURSES
> #include <ncurses.h>
> #endif

(probably my fault in configure?)

Richard Smith


reply via email to

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