libeatmydata: fix build on musl
This commit is contained in:
18
srcpkgs/libeatmydata/patches/musl.patch
Normal file
18
srcpkgs/libeatmydata/patches/musl.patch
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
In musl open64 is by default a #define to open.
|
||||||
|
However, it provides compat symbols and we want this
|
||||||
|
to explicitly use those.
|
||||||
|
|
||||||
|
--- libeatmydata/libeatmydata.c
|
||||||
|
+++ libeatmydata/libeatmydata.c
|
||||||
|
@@ -27,6 +27,11 @@
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
+/* refer to the compat alias in musl */
|
||||||
|
+#if !defined(__GLIBC__)
|
||||||
|
+#undef open64
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
/*
|
||||||
|
#define CHECK_FILE "/tmp/eatmydata"
|
||||||
|
*/
|
||||||
Reference in New Issue
Block a user