From owner-freebsd-hackers Sat Dec 30 10:49:46 1995 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA04424 for hackers-outgoing; Sat, 30 Dec 1995 10:49:46 -0800 (PST) Received: from multivac.orthanc.com (root@multivac.orthanc.com [204.244.20.2]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id KAA04291 for ; Sat, 30 Dec 1995 10:49:22 -0800 (PST) Received: from localhost (lyndon@localhost) by multivac.orthanc.com (8.7/8.7) with SMTP id KAA08824; Sat, 30 Dec 1995 10:45:57 -0800 (PST) Message-Id: <199512301845.KAA08824@multivac.orthanc.com> X-Authentication-Warning: multivac.orthanc.com: Host lyndon@localhost didn't use HELO protocol From: Lyndon Nerenberg (VE7TCP) To: John Beukema cc: hackers@freebsd.org Subject: Re: libraries In-reply-to: Your message of "Sat, 30 Dec 1995 12:24:43 +0800." Date: Sat, 30 Dec 1995 10:45:56 -0800 Sender: owner-hackers@freebsd.org Precedence: bulk >>>>> "John" == John Beukema writes: John> This error is a commonn problem. Comment it out in httcp.c John> or add #ifndef __FreeBSD__ #endif (from memory) around the John> declaration. One is defined as char * and the other as John> const char * as I remember. jbeukema The correct fix for sys_errlist declarations is: #include #if (!defined(BSD) || (BSD < 199306) /* define sys_errlist as appropriate for your system */ #endif --lyndon