>    This part of a log from an attempted build 
> of lynx 2-8-3 on VMS 7.2 with Multinet 4.2. 
>  
>   What can I do about it? 

This particular one is an improperly placed #endif, around line 1955
in LYMainLoop.c (I'm still working on my test-build, and will incorporate
the fixes into dev.19).

The code reads
        }
        #endif /* VMS */
        #endif /* defined(DIRECT_SUPPORT) || defined(VMS) */
and should be
        #endif /* VMS */
        }
        #endif /* defined(DIRECT_SUPPORT) || defined(VMS) */
  
> --------------------------------------------------------------------- 
>  
> $ cc LYMainLoop 
>  PRIVATE int handle_LYK_DOWNLOAD ARGS3( 

-- 
Thomas E. Dickey
[EMAIL PROTECTED]
http://www.clark.net/pub/dickey

Reply via email to