ref: ead710d904a1dca6421af90a02f5e80f1bb9723c
parent: 4944da4fa51bfa7344a7dcbde741160ddc2b5865
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Fri Jan 12 14:43:17 EST 2024
Add more config stuff.
--- a/src/runtime/config-micro-64.h
+++ b/src/runtime/config-micro-64.h
@@ -21,6 +21,16 @@
#define WANT_MATH 0
/*
+ * Include MD5 checksumming code
+ */
+#define WANT_MD5 0
+
+/*
+ * Include profiling code
+ */
+#define WANT_TICK 0
+
+/*
* Number of bits in a word. Only 32 and 64 are supported.
*/
#define WORD_SIZE 64
--- a/src/runtime/config-mingw-64.h
+++ b/src/runtime/config-mingw-64.h
@@ -21,6 +21,16 @@
#define WANT_MATH 1
/*
+ * Include MD5 checksumming code
+ */
+#define WANT_MD5 1
+
+/*
+ * Include profiling code
+ */
+#define WANT_TICK 1
+
+/*
* Number of bits in a word. Only 32 and 64 are supported.
*/
#define WORD_SIZE 64
--- a/src/runtime/config-unix-64.h
+++ b/src/runtime/config-unix-64.h
@@ -29,6 +29,11 @@
#define WANT_MD5 1
/*
+ * Include profiling code
+ */
+#define WANT_TICK 1
+
+/*
* Number of bits in a word. Only 32 and 64 are supported.
*/
#define WORD_SIZE 64
--- a/src/runtime/config-windows-64.h
+++ b/src/runtime/config-windows-64.h
@@ -26,6 +26,11 @@
#define WANT_MD5 1
/*
+ * Include profiling code
+ */
+#define WANT_TICK 1
+
+/*
* Number of bits in a word. Only 32 and 64 are supported.
*/
#define WORD_SIZE 64
--
⑨