ports/databases/mysql84-server/files/patch-storage_innobase_include_srv0mon.h
Jochen Neumeister 4d4dc7193d databases/mysql84-{server|client}: Update to 8.4.5
Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.4/en/

Reported by:	Christos Chatzaras (chris@cretaforce.gr) via private
eMail

Sponsored by:	Netzkommune GmbH
2025-04-29 19:39:29 +02:00

14 lines
482 B
C++

--- storage/innobase/include/srv0mon.h.orig 2025-03-31 07:51:10 UTC
+++ storage/innobase/include/srv0mon.h
@@ -41,6 +41,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
/* Required for FreeBSD so that INT64_MAX is defined. */
#define __STDC_LIMIT_MACROS
#endif /* __STDC_LIMIT_MACROS */
+#ifdef __DragonFly__
+/* The hack above doen't work for dragonfly, stdint.h already imported */
+#include <machine/int_limits.h>
+#endif
#include <stdint.h>
#include <bitset>