From c3958cec43b598b25484b9805224c56f25f7a755 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Tue, 29 Mar 2022 16:27:55 -0400 Subject: [PATCH] Include time.h in kdb.h kdb.h uses time_t, and therefore must include to ensure its definition. Noticed when building t_sort_key_data.c on macOS. --- src/include/kdb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/kdb.h b/src/include/kdb.h index 21bddcfb88..bbae9d101b 100644 --- a/src/include/kdb.h +++ b/src/include/kdb.h @@ -65,6 +65,7 @@ #ifndef KRB5_KDB5__ #define KRB5_KDB5__ +#include #include /* This version will be incremented when incompatible changes are made to the -- 2.47.2