lynx-dev
[Top][All Lists]
Advanced

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

lynx-dev AIX 4.2.1 - lynx2.8


From: michaelh
Subject: lynx-dev AIX 4.2.1 - lynx2.8
Date: Tue, 27 Oct 1998 09:06:10 +0900

I built Lynx2.8 for AIX, but I had to do the following to make it 
compile with either gcc or cc.

diff LYCurses.c.dist LYCurses.c

478c478
<       static int no_color_video = -1;
---
>       static int foobaz = -1;
489,490c489,490
<       if (no_color_video < 0) {
<               no_color_video = tigetnum("ncv");
---
>       if (foobaz < 0) {
>               foobaz = tigetnum("ncv");
492,493c492,493
<       if (no_color_video < 0)
<               no_color_video = 0;
---
>       if (foobaz < 0)
>               foobaz = 0;
505c505
<        * FIXME:  no_color_video isn't implemented (97/4/14) in ncurses 4.x,
---
>        * FIXME:  foobaz isn't implemented (97/4/14) in ncurses 4.x,
508c508
<       if ((Current_Attr & A_BOLD) && !(no_color_video & 33)) {
---
>       if ((Current_Attr & A_BOLD) && !(foobaz & 33)) {
512c512
<       if ((Current_Attr == A_UNDERLINE) && !(no_color_video & 2)) {
---
>       if ((Current_Attr == A_UNDERLINE) && !(foobaz & 2)) {

Regards,

Mike

reply via email to

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