blob: 80e6f1bc9c9e96f450636733335478d759d16462 [file] [log] [blame]
Andrew Geissler517393d2023-01-13 08:55:19 -06001From cbdbabcc14e4ae4debcc64e41c0bb97d47b4eeef Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 12 Dec 2022 12:50:07 -0800
4Subject: [PATCH] Use 64bit time_t on linux as well
5
6Alias 64bit version of stat functions to original functions
7we are already passing -D_FILE_OFFSET_BITS=64 in linux Makefile
8
9Upstream-Status: Submitted [https://sourceforge.net/p/gptfdisk/code/merge-requests/29/]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 diskio-unix.cc | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15diff --git a/diskio-unix.cc b/diskio-unix.cc
16index 7780aeb..0897c56 100644
17--- a/diskio-unix.cc
18+++ b/diskio-unix.cc
19@@ -37,8 +37,12 @@
20
21 using namespace std;
22
23-#ifdef __APPLE__
24+#if defined(__APPLE__) || defined(__linux__)
25 #define off64_t off_t
26+#define stat64 stat
27+#define fstat64 fstat
28+#define lstat64 lstat
29+#define lseek64 lseek
30 #endif
31
32 // Returns the official "real" name for a shortened version of same.