aports/community/grass-gis/40-int64.patch
Celeste d8de37cc35 community/grass-gis: upgrade to 8.3.1
also, switch source URL to HTTPS
2023-10-26 10:06:26 +00:00

15 lines
335 B
Diff

Author: Holger Jaekel <holger.jaekel@gmx.de>
Summary: fix import for int64_t
----
--- a/include/grass/gis.h
+++ b/include/grass/gis.h
@@ -629,6 +629,7 @@
/* 64 bit signed integer */
#if HAVE_INT64_T
#include <sys/types.h>
+#include <stdint.h>
typedef int64_t grass_int64;
#elif defined(__MINGW32__)
typedef __int64 grass_int64;