diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2020-03-28 21:20:16 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2020-03-28 21:20:16 +0000 |
commit | d5a2d4b0847392305e7de2bca65d30987bd0ca7e (patch) | |
tree | 6abd9673142dfece523ff5e5379b862080aa0e65 /system/bubblewrap/musl-fixes.patch | |
parent | 2e865b057fa79fa5f65240dd6634c91824f3f480 (diff) | |
parent | 29d357bdc4c7296befb3b35cd3ac3d17aa561bdb (diff) | |
download | packages-d5a2d4b0847392305e7de2bca65d30987bd0ca7e.tar.gz packages-d5a2d4b0847392305e7de2bca65d30987bd0ca7e.tar.bz2 packages-d5a2d4b0847392305e7de2bca65d30987bd0ca7e.tar.xz packages-d5a2d4b0847392305e7de2bca65d30987bd0ca7e.zip |
Merge branch 'bump/misc/2020.03.23' into 'master'
Miscellaneous bumps for 2020.03.23
See merge request adelie/packages!417
Diffstat (limited to 'system/bubblewrap/musl-fixes.patch')
-rw-r--r-- | system/bubblewrap/musl-fixes.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/system/bubblewrap/musl-fixes.patch b/system/bubblewrap/musl-fixes.patch deleted file mode 100644 index ecf626331..000000000 --- a/system/bubblewrap/musl-fixes.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/config.h.in -+++ b/config.h.in -@@ -102,3 +102,14 @@ - - /* Define to 1 if you need to in order for `stat' and other things to work. */ - #undef _POSIX_SOURCE -+ -+/* taken from glibc unistd.h and fixes musl */ -+#ifndef TEMP_FAILURE_RETRY -+#define TEMP_FAILURE_RETRY(expression) \ -+ (__extension__ \ -+ ({ long int __result; \ -+ do __result = (long int) (expression); \ -+ while (__result == -1L && errno == EINTR); \ -+ __result; })) -+#endif -+ |