mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-21 03:25:26 +00:00
765323df23
Lakka 5.x Switch changes (#1853) Lakka v5.x switchroot 5.1.2 (#1871) Fix Switch Issue's in upstream 5.x (#1888) Minor Switch Changes (#1893) Lakka v5.x switch 3 (#1895) Lakka v5.x switch 4 (#1898) L4T: Xorg-server: Fix build issue (#1924) Switch: remove ra patch Lakka v5.x switch 6 (#1926) Cleanups, More LibreELEC Stuff, more permission fixes, Misc switch stuff. (#1930) Switch: U-Boot: bump version to 2024-NX02 (#1946) L4T/Ayn post-upstreaming fixes - retroarch_joypad_autoconfig: remove spaces from file names - retroarch: remove Switch specific patch merged upstream - libXv: move to L4T packages folder (package removed in upstream) - bring some packages from v5.x to L4T packages - ffmpeg: remove vulkan - remove stella core from Switch build (missing C++ headers) - Ayn/Odin: use proper kernel arg to not hide kernel messages in console - connman: add wpa_supplicant support back
35 lines
884 B
Diff
35 lines
884 B
Diff
From 7dfa8984f5a30f313d8675ff6097c8592d636d10 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 12 Dec 2022 12:50:07 -0800
|
|
Subject: [PATCH 05/12] Use 64bit time_t on linux as well
|
|
|
|
Alias 64bit version of stat functions to original functions
|
|
we are already passing -D_FILE_OFFSET_BITS=64 in linux Makefile
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
diskio-unix.cc | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/diskio-unix.cc b/diskio-unix.cc
|
|
index 7780aeb..0897c56 100644
|
|
--- a/diskio-unix.cc
|
|
+++ b/diskio-unix.cc
|
|
@@ -37,8 +37,12 @@
|
|
|
|
using namespace std;
|
|
|
|
-#ifdef __APPLE__
|
|
+#if defined(__APPLE__) || defined(__linux__)
|
|
#define off64_t off_t
|
|
+#define stat64 stat
|
|
+#define fstat64 fstat
|
|
+#define lstat64 lstat
|
|
+#define lseek64 lseek
|
|
#endif
|
|
|
|
// Returns the official "real" name for a shortened version of same.
|
|
--
|
|
2.31.1
|
|
|