summaryrefslogtreecommitdiff
path: root/net-im/openmittsu/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-06-14 15:21:15 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-06-14 15:21:15 +0100
commit1c382dc5dbc52576ac2300fee0498af8af44e7b4 (patch)
tree45d2492f5c659cbb01120d4192c9be34841362bd /net-im/openmittsu/files
parentb9e8f3cc44aed3b6da71c7510c6287bf7bbbc66b (diff)
Revert "gentoo auto-resync : 14:06:2023 - 15:13:45"
This reverts commit b9e8f3cc44aed3b6da71c7510c6287bf7bbbc66b.
Diffstat (limited to 'net-im/openmittsu/files')
-rw-r--r--net-im/openmittsu/files/openmittsu-0.10.0.0-musl.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/net-im/openmittsu/files/openmittsu-0.10.0.0-musl.patch b/net-im/openmittsu/files/openmittsu-0.10.0.0-musl.patch
deleted file mode 100644
index 7935ff5530d4..000000000000
--- a/net-im/openmittsu/files/openmittsu-0.10.0.0-musl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Fix compilation with MUSL libc
-https://bugs.gentoo.org/907754
-
-Patch backported from spdlog repository:
-https://github.com/gabime/spdlog/commit/287a00d364990edbb621fe5e392aeb550135fb96
-
-commit 287a00d364990edbb621fe5e392aeb550135fb96
-Author: Khem Raj <raj.khem@gmail.com>
-Date: Tue Jan 3 09:54:50 2023 -0800
-
- Do not use LFS64 functions on linux/musl (#2589)
-
---- openmittsu-0.10.0.0/3rdparty/spdlog/include/spdlog/details/os-inl.h
-+++ openmittsu-0.10.0.0/3rdparty/spdlog/include/spdlog/details/os-inl.h
-@@ -230,8 +230,8 @@
- #else
- int fd = ::fileno(f);
- #endif
--// 64 bits(but not in osx or cygwin, where fstat64 is deprecated)
--#if (defined(__linux__) || defined(__sun) || defined(_AIX)) && (defined(__LP64__) || defined(_LP64))
-+// 64 bits(but not in osx, linux/musl or cygwin, where fstat64 is deprecated)
-+#if ((defined(__linux__) && defined(__GLIBC__)) || defined(__sun) || defined(_AIX)) && (defined(__LP64__) || defined(_LP64))
- struct stat64 st;
- if (::fstat64(fd, &st) == 0)
- {