--- src/storage/storage_util.c.orig 2024-12-02 06:16:51.000000000 -0600 +++ src/storage/storage_util.c 2024-12-12 22:57:18.000000000 -0600 @@ -43,6 +43,10 @@ # include #endif +#ifdef __APPLE__ +# include +#endif + #include "datatypes.h" #include "virerror.h" #include "viralloc.h" @@ -1898,7 +1902,9 @@ #ifdef __APPLE__ target->timestamps->atime = sb->st_atimespec; +#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 target->timestamps->btime = sb->st_birthtimespec; +#endif target->timestamps->ctime = sb->st_ctimespec; target->timestamps->mtime = sb->st_mtimespec; #else /* ! __APPLE__ */