summaryrefslogtreecommitdiff
path: root/src/h-config.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-02-14 15:58:50 +0100
committerBardur Arantsson <bardur@scientician.net>2010-02-14 16:00:22 +0100
commit9c5efc505884b7b03c7bbc14367d788487e97c8d (patch)
tree787f5100478b7de152d465141a96f3c8996a50cc /src/h-config.h
parent8456ddac1f7770283ba040eb612347f5108a590f (diff)
Revert use of stdint.h since not all compilers we're supporting have it.
This reverts commit d324d9c0ac98e74db26e5dd5c6e379c1fc18cff3.
Diffstat (limited to 'src/h-config.h')
-rw-r--r--src/h-config.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/h-config.h b/src/h-config.h
index da68959d..d69876cc 100644
--- a/src/h-config.h
+++ b/src/h-config.h
@@ -143,6 +143,17 @@
/*
+ * OPTION: Define "L64" if a "long" is 64-bits. See "h-types.h".
+ * The only such platform that angband is ported to is currently
+ * DEC Alpha AXP running OSF/1 (OpenVMS uses 32-bit longs).
+ */
+#if defined(__alpha) && defined(__osf__) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(__ia64) || defined(__ia64__) || defined(__mips64) || defined(__ppc64__) || defined(__PPC64__) || defined(__powerpc64__) || defined(__64BIT__) || defined(__sparc64__) || defined(__LP64__)
+# define L64
+#endif
+
+
+
+/*
* OPTION: set "SET_UID" if the machine is a "multi-user" machine.
* This option is used to verify the use of "uids" and "gids" for
* various "Unix" calls, and of "pids" for getting a random seed,