LYNX2-7 Multinet Compile Error Fix
Kerry Bouchard, last revised 2/23/97
The Lynx source code distribution includes a "BUILD.COM" file in the
root "LYNX2-7" directory that is created when the distribution file is
unzipped. Running BUILD.COM compiles and links the source code and produces a
LYNX.EXE file in the same directory. When running BUILD.COM on a system
running:
CISCO MultiNet V4.0 Rev A, AlphaServer 2100 4/200, OpenVMS AXP V6.2
the DECC compiler generated an error and aborted the compilation. Making
the following modification to the
[LYNX2-7.WWW.LIBRARY.IMPLEMENTATION]TCP.H
file eliminated the error and allowed the compilation and linking to
complete. I replaced the lines:
extern unsigned short multinet_htons();
extern unsigned short multinet_ntohs();
with the lines:
/* Commented-out to fix compile error !TCUmod!
extern unsigned short multinet_htons();
extern unsigned short multinet_ntohs();
*/
-###-