summaryrefslogtreecommitdiffstats
path: root/sys/alpha/include
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1999-03-01 06:10:16 +0000
committerimp <imp@FreeBSD.org>1999-03-01 06:10:16 +0000
commit03ea38a67334ea10fbde0ecb63df8140fca0fc6d (patch)
tree41aab9d775e0f89a7da0a9c6e380acd6ba2d2b64 /sys/alpha/include
parent8787d798723e87cfc49acb28f2eba48bffb261c8 (diff)
downloadFreeBSD-src-03ea38a67334ea10fbde0ecb63df8140fca0fc6d.zip
FreeBSD-src-03ea38a67334ea10fbde0ecb63df8140fca0fc6d.tar.gz
Don't define MACHINE, MACHINE_ARCH, _MACHINE or _MACHINE_ARCH if
already defined. This allows for cross building to work because we need to lie to make to tell it to use the target names rather than the host names. This should have no effect on either architecture. I've confirmed that the intel build by make buildworld's for the past 3 months.
Diffstat (limited to 'sys/alpha/include')
-rw-r--r--sys/alpha/include/param.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/alpha/include/param.h b/sys/alpha/include/param.h
index 8bed423..190b1eb 100644
--- a/sys/alpha/include/param.h
+++ b/sys/alpha/include/param.h
@@ -1,4 +1,4 @@
-/* $Id: param.h,v 1.7 1998/09/09 01:21:25 jdp Exp $ */
+/* $Id: param.h,v 1.8 1999/02/19 19:34:47 luoqi Exp $ */
/* From: NetBSD: param.h,v 1.20 1997/09/19 13:52:53 leo Exp */
/*
@@ -46,10 +46,18 @@
/*
* Machine dependent constants for the Alpha.
*/
+#ifndef _MACHINE
#define _MACHINE alpha
+#endif
+#ifndef MACHINE
#define MACHINE "alpha"
+#endif
+#ifndef _MACHINE_ARCH
#define _MACHINE_ARCH alpha
+#endif
+#ifndef MACHINE_ARCH
#define MACHINE_ARCH "alpha"
+#endif
#define MID_MACHINE MID_ALPHA
#include <machine/alpha_cpu.h>
OpenPOWER on IntegriCloud