diff options
Diffstat (limited to 'etc/patches')
-rw-r--r-- | etc/patches/direct_mmap.h.diff | 11 | ||||
-rw-r--r-- | etc/patches/options.h.diff | 31 |
2 files changed, 20 insertions, 22 deletions
diff --git a/etc/patches/direct_mmap.h.diff b/etc/patches/direct_mmap.h.diff deleted file mode 100644 index 8c400e2b..00000000 --- a/etc/patches/direct_mmap.h.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- direct_mmap.h.orig 2023-08-27 16:22:17.101255129 +0200 -+++ direct_mmap.h 2023-08-27 16:23:26.048355108 +0200 -@@ -72,7 +72,7 @@ - // Platform specific logic extracted from - // https://chromium.googlesource.com/linux-syscall-support/+/master/linux_syscall_support.h - inline void* DirectMmap(void* start, size_t length, int prot, int flags, int fd, -- off64_t offset) noexcept { -+ int64_t offset) noexcept { - #if defined(__i386__) || defined(__ARM_ARCH_3__) || defined(__ARM_EABI__) || \ - defined(__m68k__) || defined(__sh__) || \ - (defined(__hppa__) && !defined(__LP64__)) || \ diff --git a/etc/patches/options.h.diff b/etc/patches/options.h.diff index d0f27f99..622ed702 100644 --- a/etc/patches/options.h.diff +++ b/etc/patches/options.h.diff @@ -3,36 +3,45 @@ @@ -94,7 +94,7 @@ // User code should not inspect this macro. To check in the preprocessor if // absl::any is a typedef of std::any, use the feature macro ABSL_USES_STD_ANY. - + -#define ABSL_OPTION_USE_STD_ANY 2 +#define ABSL_OPTION_USE_STD_ANY 0 - - + + // ABSL_OPTION_USE_STD_OPTIONAL @@ -121,7 +121,7 @@ // absl::optional is a typedef of std::optional, use the feature macro // ABSL_USES_STD_OPTIONAL. - + -#define ABSL_OPTION_USE_STD_OPTIONAL 2 +#define ABSL_OPTION_USE_STD_OPTIONAL 0 - - + + // ABSL_OPTION_USE_STD_STRING_VIEW @@ -148,7 +148,7 @@ // absl::string_view is a typedef of std::string_view, use the feature macro // ABSL_USES_STD_STRING_VIEW. - + -#define ABSL_OPTION_USE_STD_STRING_VIEW 2 +#define ABSL_OPTION_USE_STD_STRING_VIEW 0 - + // ABSL_OPTION_USE_STD_VARIANT // @@ -174,7 +174,7 @@ // absl::variant is a typedef of std::variant, use the feature macro // ABSL_USES_STD_VARIANT. - + -#define ABSL_OPTION_USE_STD_VARIANT 2 +#define ABSL_OPTION_USE_STD_VARIANT 0 - - + + // ABSL_OPTION_USE_STD_ORDERING + // +@@ -201,7 +201,7 @@ + // the ordering types are aliases of std:: ordering types, use the feature macro + // ABSL_USES_STD_ORDERING. + +-#define ABSL_OPTION_USE_STD_ORDERING 2 ++#define ABSL_OPTION_USE_STD_ORDERING 0 + // ABSL_OPTION_USE_INLINE_NAMESPACE + // ABSL_OPTION_INLINE_NAMESPACE_NAME |