summaryrefslogtreecommitdiff
path: root/Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc')
-rw-r--r--Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc23
1 files changed, 0 insertions, 23 deletions
diff --git a/Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc b/Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc
deleted file mode 100644
index bcfc5489720..00000000000
--- a/Build/source/utils/pmx/pmx-src/libf2c/patch-07-MuslLibc
+++ /dev/null
@@ -1,23 +0,0 @@
-
-pmx does not compile with musl libc because the included
-libf2c uses the nonstandard type __off64_t. The below patch,
-which is adapted from current libf2c, fixes this.
-
-Felix Janda [mailto:felix.janda@posteo.de]
-
-
---- a/pmx-2.6.18/libf2c/sysdep1.h
-+++ b/pmx-2.6.18/libf2c/sysdep1.h
-@@ -10,7 +10,11 @@
-
- #ifdef __linux__
- #define USE_LARGEFILE
-+#ifdef __GLIBC__
- #define OFF_T __off64_t
-+#else
-+#define OFF_T off_t
-+#endif
- #endif
-
- #ifdef _AIX43
-