From: Chris Hanson Date: Tue, 1 Feb 2000 01:50:54 +0000 (+0000) Subject: If __ELF__ isn't defined, this is an old version of FreeBSD and should X-Git-Tag: 20090517-FFI~4283 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=94a4a22d329f9cb6a1c76e5a6928764ca25c0459;p=mit-scheme.git If __ELF__ isn't defined, this is an old version of FreeBSD and should be compiled using the old rules. --- diff --git a/v7/src/microcode/s/freebsd.h b/v7/src/microcode/s/freebsd.h index 257d09e13..e664117e2 100644 --- a/v7/src/microcode/s/freebsd.h +++ b/v7/src/microcode/s/freebsd.h @@ -1,7 +1,7 @@ /* -*-C-*- System file for FreeBSD -$Id: freebsd.h,v 1.1 2000/01/31 03:31:33 cph Exp $ +$Id: freebsd.h,v 1.2 2000/02/01 01:50:54 cph Exp $ Copyright (c) 1993-2000 Massachusetts Institute of Technology @@ -20,6 +20,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef __ELF__ + #define C_SWITCH_SYSTEM -I/usr/X11R6/include #define LIBX11_MACHINE -L/usr/X11R6/lib @@ -40,3 +42,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. /* Use the built-in files and rather than those generated by the "hard-par" program. */ #define USE_BUILT_IN_LIMITS_FILES + +#else /* not __ELF__ */ + +#include "386bsd.h" + +#endif /* not __ELF__ */