summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch')
-rw-r--r--meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch b/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch
deleted file mode 100644
index 80e6f1bc9c..0000000000
--- a/meta/recipes-devtools/fdisk/gptfdisk/0001-Use-64bit-time_t-on-linux-as-well.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 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.