If __ELF__ isn't defined, this is an old version of FreeBSD and should
authorChris Hanson <org/chris-hanson/cph>
Tue, 1 Feb 2000 01:50:54 +0000 (01:50 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 1 Feb 2000 01:50:54 +0000 (01:50 +0000)
be compiled using the old rules.

v7/src/microcode/s/freebsd.h

index 257d09e1376ca41d9dc1bec80e15ba87b3d53f91..e664117e2fee06581328d5b1b2fda8bff224b395 100644 (file)
@@ -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 <limits.h> and <float.h> rather than those
    generated by the "hard-par" program.  */
 #define USE_BUILT_IN_LIMITS_FILES
+
+#else /* not __ELF__ */
+
+#include "386bsd.h"
+
+#endif /* not __ELF__ */