ref: 2fd37e8ea58c103667bd82057c6e86b65bc34a6e
parent: 8675af3c5ba7fa4e6a1795076455d7a87f27d48d
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Mon Nov 27 10:58:48 EST 2023
Use MD5 on windows too.
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -40,5 +40,5 @@
uses: ilammy/msvc-dev-cmd@v1
- name: nmake
run: nmake -f Makefile.windows
- - name: name exampletest
+ - name: nmake exampletest
run: nmake -f Makefile.windows exampletest
--- a/src/runtime/config-windows-64.h
+++ b/src/runtime/config-windows-64.h
@@ -21,6 +21,11 @@
#define WANT_MATH 1
/*
+ * Include MD5 checksumming code
+ */
+#define WANT_MD5 1
+
+/*
* Number of bits in a word. Only 32 and 64 are supported.
*/
#define WORD_SIZE 64
--
⑨