From 94a4a22d329f9cb6a1c76e5a6928764ca25c0459 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 1 Feb 2000 01:50:54 +0000 Subject: [PATCH] If __ELF__ isn't defined, this is an old version of FreeBSD and should be compiled using the old rules. --- v7/src/microcode/s/freebsd.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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__ */ -- 2.25.1