about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3backer/fix-darwin-builds.patch
blob: e5755f1cb9b08a27db8345ec9a9b2cc229749c86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 303a669356fa7cd6bc95ac7076ce51b1cab3970a Mon Sep 17 00:00:00 2001
From: Adrian Ho <the.gromgit@gmail.com>
Date: Tue, 6 Sep 2022 10:49:10 +0800
Subject: [PATCH] Enable macOS builds

macOS requires explicit `environ` declaration.
---
 s3backer.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/s3backer.h b/s3backer.h
index ccc9053..383e246 100644
--- a/s3backer.h
+++ b/s3backer.h
@@ -90,6 +90,10 @@
 #include <zlib.h>
 #include <fuse.h>
 
+#ifdef __APPLE__
+extern char **environ;
+#endif
+
 #ifndef FUSE_OPT_KEY_DISCARD
 #define FUSE_OPT_KEY_DISCARD -4
 #endif