mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 19:13:27 -04:00
This is a development snapshot of upcoming MySQL 8.0. PR: 215738 Submitted by: Mahdi Mokhtari <mokhi64@gmail.com> Reviewed by: matthew, feld Approved by: matthew (mentor), feld Differential Revision: https://reviews.freebsd.org/D9031
13 lines
440 B
C
13 lines
440 B
C
--- storage/innobase/include/srv0mon.h.orig 2016-03-28 18:06:12 UTC
|
|
+++ storage/innobase/include/srv0mon.h
|
|
@@ -34,6 +34,10 @@ Created 12/15/2009 Jimmy Yang
|
|
/* 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>
|
|
|