From 9c7ef4a3b4f0fc60dadea1002e81344a580b3071 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 26 Jul 2023 15:52:54 +1000 Subject: [PATCH] Fix build error in fcacebbfb1b01e4cd30237458294906779715c29 The header was not included, define ulong locally. --- source/creator/buildinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c index 17e182f98fd..2166ace54d1 100644 --- a/source/creator/buildinfo.c +++ b/source/creator/buildinfo.c @@ -6,12 +6,12 @@ * \ingroup creator */ -#include "BLI_sys_types.h" - #ifdef WITH_BUILDINFO_HEADER # include "buildinfo.h" #endif +typedef unsigned long ulong; + #ifdef BUILD_DATE extern char build_date[];