aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sade/sade.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-05-24 21:12:14 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-05-24 21:12:14 +0000
commit5e8db10ac1482476891ee64af19f9c846da49a75 (patch)
tree43709e9efb37f6cadc3d7c17ffb2e5098c73f614 /usr.sbin/sade/sade.h
parentcd51f0035e64cf8045a944a9abdc7749c52713a2 (diff)
downloadsrc-5e8db10ac1482476891ee64af19f9c846da49a75.tar.gz
src-5e8db10ac1482476891ee64af19f9c846da49a75.zip
Add __amd64__ ifdefs to enable the bootblock handling code, slices, etc.
Approved by: re (murray) Obtained from: obrien
Notes
Notes: svn path=/head/; revision=115293
Diffstat (limited to 'usr.sbin/sade/sade.h')
-rw-r--r--usr.sbin/sade/sade.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sade/sade.h b/usr.sbin/sade/sade.h
index cf535750125c..264dc402af8c 100644
--- a/usr.sbin/sade/sade.h
+++ b/usr.sbin/sade/sade.h
@@ -54,12 +54,12 @@
/*** Defines ***/
-#if defined(__i386__) || defined(__alpha__) || defined(__ia64__)
+#if defined(__i386__) || defined(__alpha__) || defined(__ia64__) || defined(__amd64__)
#define WITH_SYSCONS
#define WITH_MICE
#endif
-#if defined(__i386__) || defined(__ia64__)
+#if defined(__i386__) || defined(__ia64__) || defined(__amd64__)
#define WITH_SLICES
#endif
@@ -421,7 +421,7 @@ extern int BootMgr; /* Which boot manager to use */
extern int StatusLine; /* Where to print our status messages */
extern DMenu MenuInitial; /* Initial installation menu */
extern DMenu MenuFixit; /* Fixit repair menu */
-#ifdef __i386__
+#if defined(__i386__) || defined(__amd64__)
#ifdef PC98
extern DMenu MenuIPLType; /* Type of IPL to write on the disk */
#else