[Scummvm-git-logs] scummvm-tools master -> f0a7437f8f2496b0581c76315ff669addd454db2

lephilousophe noreply at scummvm.org
Mon Jan 2 16:05:23 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
f0a7437f8f CONFIGURE: Prevent MacOS to try to redefine uint64


Commit: f0a7437f8f2496b0581c76315ff669addd454db2
    https://github.com/scummvm/scummvm-tools/commit/f0a7437f8f2496b0581c76315ff669addd454db2
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-01-02T17:04:39+01:00

Commit Message:
CONFIGURE: Prevent MacOS to try to redefine uint64

Changed paths:
    configure


diff --git a/configure b/configure
index e45e28f6..1ab0ccf3 100755
--- a/configure
+++ b/configure
@@ -1948,6 +1948,12 @@ typedef signed $type_2_byte int16;
 typedef signed $type_4_byte int32;
 typedef signed $type_8_byte int64;
 
+#if defined(__APPLE__) && !defined(__ppc__)
+#ifndef _UINT64
+#define _UINT64
+#endif
+#endif
+
 #endif /* CONFIG_H */
 EOF
 




More information about the Scummvm-git-logs mailing list