[openwrt/openwrt] tools/fakeroot: fix build on MacOS arm64

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 2 05:45:37 PST 2021


aparcar pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/8fedc17d01806c8a4bf4ed9e83a9523677d37bbd

commit 8fedc17d01806c8a4bf4ed9e83a9523677d37bbd
Author: Sergey V. Lobanov <sergey at lobanov.in>
AuthorDate: Mon Nov 29 19:07:34 2021 +0300

    tools/fakeroot: fix build on MacOS arm64
    
    Added patch for MacOS without 32 bit inodes support
    (__DARWIN_ONLY_64_BIT_INO_T is true)
    
    This patch based on discussion https://github.com/archmac/bootstrap/issues/4
    
    Signed-off-by: Sergey V. Lobanov <sergey at lobanov.in>
---
 .../patches/500-macos_arm64_compile_fix.patch      | 86 ++++++++++++++++++++++
 1 file changed, 86 insertions(+)

diff --git a/tools/fakeroot/patches/500-macos_arm64_compile_fix.patch b/tools/fakeroot/patches/500-macos_arm64_compile_fix.patch
new file mode 100644
index 0000000000..a3731b9e99
--- /dev/null
+++ b/tools/fakeroot/patches/500-macos_arm64_compile_fix.patch
@@ -0,0 +1,86 @@
+diff --git a/communicate.c b/communicate.c
+index e2699a2..21e5366 100644
+--- a/communicate.c
++++ b/communicate.c
+@@ -24,7 +24,12 @@
+    In this file, we want 'struct stat' to have a 32-bit 'ino_t'.
+    We use 'struct stat64' when we need a 64-bit 'ino_t'.
+ */
+-#define _DARWIN_NO_64_BIT_INODE
++# include <sys/types.h>
++# if __DARWIN_ONLY_64_BIT_INO_T
++#  define _DARWIN_USE_64_BIT_INODE
++# else
++#  define _DARWIN_NO_64_BIT_INODE
++# endif
+ #endif
+ 
+ #include "communicate.h"
+diff --git a/communicate.h b/communicate.h
+index 3f9ca39..a586108 100644
+--- a/communicate.h
++++ b/communicate.h
+@@ -91,6 +91,10 @@
+ # include <inttypes.h>
+ #endif
+ 
++#if __DARWIN_ONLY_64_BIT_INO_T
++struct stat64 __DARWIN_STRUCT_STAT64;
++#endif
++
+ #ifndef FAKEROOT_FAKENET
+ # define FAKEROOTKEY_ENV          "FAKEROOTKEY"
+ #endif /* ! FAKEROOT_FAKENET */
+diff --git a/faked.c b/faked.c
+index a970184..ea51a23 100644
+--- a/faked.c
++++ b/faked.c
+@@ -84,7 +84,12 @@
+    In this file, we want 'struct stat' to have a 32-bit 'ino_t'.
+    We use 'struct stat64' when we need a 64-bit 'ino_t'.
+ */
+-#define _DARWIN_NO_64_BIT_INODE
++# include <sys/types.h>
++# if __DARWIN_ONLY_64_BIT_INO_T
++#  define _DARWIN_USE_64_BIT_INODE
++# else
++#  define _DARWIN_NO_64_BIT_INODE
++# endif
+ #endif
+ 
+ #include "config.h"
+diff --git a/libfakeroot.c b/libfakeroot.c
+index c967d5d..836337d 100644
+--- a/libfakeroot.c
++++ b/libfakeroot.c
+@@ -38,7 +38,12 @@
+    In this file, we want 'struct stat' to have a 32-bit 'ino_t'.
+    We use 'struct stat64' when we need a 64-bit 'ino_t'.
+ */
+-#define _DARWIN_NO_64_BIT_INODE
++# include <sys/types.h>
++# if __DARWIN_ONLY_64_BIT_INO_T
++#  define _DARWIN_USE_64_BIT_INODE
++# else
++#  define _DARWIN_NO_64_BIT_INODE
++# endif
+ 
+ /* The helper _unix2003 version of this file calls a few functions in this file
+    that are marked with static_nonapple so that needs to become private instead
+diff --git a/libfakeroot_unix2003.c b/libfakeroot_unix2003.c
+index e1e19b6..f32bfec 100644
+--- a/libfakeroot_unix2003.c
++++ b/libfakeroot_unix2003.c
+@@ -18,7 +18,11 @@
+    In this file, we want 'struct stat' to have a 32-bit 'ino_t'.
+    We use 'struct stat64' when we need a 64-bit 'ino_t'.
+ */
+-#define _DARWIN_NO_64_BIT_INODE
++# if __DARWIN_ONLY_64_BIT_INO_T
++#  define _DARWIN_USE_64_BIT_INODE
++# else
++#  define _DARWIN_NO_64_BIT_INODE
++# endif
+ 
+ /*
+    This file is for 32-bit symbols which have the "$UNIX2003" version, i.e.



More information about the lede-commits mailing list