From owner-freebsd-questions Wed Feb 22 20:55:56 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id UAA20814 for questions-outgoing; Wed, 22 Feb 1995 20:55:56 -0800 Received: from kalypso.iqm.unicamp.br (kalypso.iqm.unicamp.br [143.106.13.10]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id UAA20807 for ; Wed, 22 Feb 1995 20:55:52 -0800 Received: (from vazquez@localhost) by kalypso.iqm.unicamp.br (8.6.9/8.6.9) id BAA24891 for freebsd-questions@freefall.cdrom.com; Thu, 23 Feb 1995 01:52:43 -0300 From: Pedro A M Vazquez Message-Id: <199502230452.BAA24891@kalypso.iqm.unicamp.br> Subject: gcc-2.6.3 To: freebsd-questions@freefall.cdrom.com Date: Thu, 23 Feb 1995 01:52:39 -0300 (EST) Organization: Instituto de Quimica Unicamp X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 649 Sender: questions-owner@FreeBSD.org Precedence: bulk Hello I'm compiling gnu f77 for freebsd2.0, I called configure with i486-unknown-freebsd and started to make the compiler but I've that gcc.c, cccp.c and f/g77.c have the following conditional extern int sys_nerr; #if defined(bsd4_4) || defined(__NetBSD__) extern const char *const sys_errlist[]; #else extern char *sys_errlist[]; #endif which I've changed to extern int sys_nerr; #if defined(bsd4_4) || defined(__NetBSD__) || defined(__FreeBSD__) extern const char *const sys_errlist[]; #else extern char *sys_errlist[]; #endif My question is: Have I used the wrong configure arguments or gcc-2.6.3 is not up to date with FreeBSD2 ? Pedro