Ticket #64624: debian_fix_1.patch
File debian_fix_1.patch, 2.2 KB (added by bradleyCPA (B. Holder), 3 years ago) |
---|
-
communicate.c
old new 24 24 In this file, we want 'struct stat' to have a 32-bit 'ino_t'. 25 25 We use 'struct stat64' when we need a 64-bit 'ino_t'. 26 26 */ 27 #define _DARWIN_NO_64_BIT_INODE 27 # include <sys/types.h> 28 # if __DARWIN_ONLY_64_BIT_INO_T 29 # define _DARWIN_USE_64_BIT_INODE 30 # else 31 # define _DARWIN_NO_64_BIT_INODE 32 # endif 28 33 #endif 29 34 30 35 #include "communicate.h" -
communicate.h
old new 91 91 # include <inttypes.h> 92 92 #endif 93 93 94 #if __DARWIN_ONLY_64_BIT_INO_T 95 struct stat64 __DARWIN_STRUCT_STAT64; 96 #endif 97 94 98 #ifndef FAKEROOT_FAKENET 95 99 # define FAKEROOTKEY_ENV "FAKEROOTKEY" 96 100 #endif /* ! FAKEROOT_FAKENET */ -
faked.c
old new 84 84 In this file, we want 'struct stat' to have a 32-bit 'ino_t'. 85 85 We use 'struct stat64' when we need a 64-bit 'ino_t'. 86 86 */ 87 #define _DARWIN_NO_64_BIT_INODE 87 # include <sys/types.h> 88 # if __DARWIN_ONLY_64_BIT_INO_T 89 # define _DARWIN_USE_64_BIT_INODE 90 # else 91 # define _DARWIN_NO_64_BIT_INODE 92 # endif 88 93 #endif 89 94 90 95 #include "config.h" -
libfakeroot.c
old new 38 38 In this file, we want 'struct stat' to have a 32-bit 'ino_t'. 39 39 We use 'struct stat64' when we need a 64-bit 'ino_t'. 40 40 */ 41 #define _DARWIN_NO_64_BIT_INODE 41 # include <sys/types.h> 42 # if __DARWIN_ONLY_64_BIT_INO_T 43 # define _DARWIN_USE_64_BIT_INODE 44 # else 45 # define _DARWIN_NO_64_BIT_INODE 46 # endif 42 47 43 48 /* The helper _unix2003 version of this file calls a few functions in this file 44 49 that are marked with static_nonapple so that needs to become private instead -
libfakeroot_inode64.c
old new 36 36 #include <fts.h> 37 37 #endif /* HAVE_FTS_H */ 38 38 39 void load_library_symbols(void); 40 39 41 #include "wrapped.h" 40 42 #include "wraptmpf.h" 41 43 #include "wrapdef.h" -
libfakeroot_unix2003.c
old new 18 18 In this file, we want 'struct stat' to have a 32-bit 'ino_t'. 19 19 We use 'struct stat64' when we need a 64-bit 'ino_t'. 20 20 */ 21 #define _DARWIN_NO_64_BIT_INODE 21 # if __DARWIN_ONLY_64_BIT_INO_T 22 # define _DARWIN_USE_64_BIT_INODE 23 # else 24 # define _DARWIN_NO_64_BIT_INODE 25 # endif 22 26 23 27 /* 24 28 This file is for 32-bit symbols which have the "$UNIX2003" version, i.e.