-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathspl-1012.diff
52 lines (51 loc) · 1.96 KB
/
spl-1012.diff
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
diff --git a/module/spl/Info.plist b/module/spl/Info.plist
index cc6c3cf..e2ea476 100644
--- a/module/spl/Info.plist
+++ b/module/spl/Info.plist
@@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
- <string>14C1514</string>
+ <string>17D102</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
@@ -25,19 +25,19 @@
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
- <string>6C131e</string>
+ <string>9C40b</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
- <string>12F37</string>
+ <string>16E185</string>
<key>DTSDKName</key>
- <string>macosx10.8</string>
+ <string>macosx10.12</string>
<key>DTXcode</key>
- <string>0620</string>
+ <string>0920</string>
<key>DTXcodeBuild</key>
- <string>6C131e</string>
+ <string>9C40b</string>
<key>NSHumanReadableCopyright</key>
- <string>CDDL (SPL), BSD (FreeBSD), Copyright © 2012-2016 OpenZFS on OS X. All rights reserved.</string>
+ <string>CDDL (SPL), BSD (FreeBSD), Copyright © 2012-2019 OpenZFS on OS X. All rights reserved.</string>
<key>OSBundleCompatibleVersion</key>
<string>1.0.0</string>
<key>OSBundleLibraries</key>
diff --git a/module/spl/spl-osx.c b/module/spl/spl-osx.c
index 2bc9da6..402c1ee 100644
--- a/module/spl/spl-osx.c
+++ b/module/spl/spl-osx.c
@@ -486,7 +486,7 @@ extern kern_return_t _stop(kmod_info_t *ki, void *data);
__private_extern__ kern_return_t spl_start(kmod_info_t *ki, void *data);
__private_extern__ kern_return_t spl_stop(kmod_info_t *ki, void *data);
-__attribute__((visibility("default"))) KMOD_EXPLICIT_DECL(net.lundman.spl, "1.0.0", _start, _stop)
+__attribute__((visibility("default"))) KMOD_EXPLICIT_DECL(net.lundman.spl, "18.0.12", _start, _stop)
__private_extern__ kmod_start_func_t *_realmain = spl_start;
__private_extern__ kmod_stop_func_t *_antimain = spl_stop;
__private_extern__ int _kext_apple_cc = __APPLE_CC__ ;