Date: Thu, 23 Feb 1995 01:52:39 -0300 (EST) From: Pedro A M Vazquez <vazquez@iqm.unicamp.br> To: freebsd-questions@freefall.cdrom.com Subject: gcc-2.6.3 Message-ID: <199502230452.BAA24891@kalypso.iqm.unicamp.br>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199502230452.BAA24891>