-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1398 from darlinghq/fedora_38_fix
Fix Building For Fedora 38
- Loading branch information
Showing
41 changed files
with
231 additions
and
272 deletions.
There are no files selected for viewing
Submodule IOKitUser
updated
3 files
+1 −1 | IOKitLib.c | |
+1 −1 | darling/submodules/xnu | |
+1 −0 | hid.subproj/IOHIDEventSystemConnectionPrivate.h |
Submodule apr
updated
3 files
+2 −2 | README.md | |
+1 −1 | apr/apr/CMakeLists.txt | |
+4 −0 | apr/apr/file_io/unix/readwrite.c |
Submodule corefoundation
updated
11 files
+1 −0 | CFRuntime.c | |
+6 −0 | CFSortFunctions.h | |
+9 −1 | CFSystemDirectories.c | |
+1 −0 | NSArray.m | |
+1 −1 | NSBlockInvocation.m | |
+1 −0 | NSDictionary.m | |
+1 −0 | NSForwarding.m | |
+2 −2 | NSInvocation.m | |
+3 −0 | NSOrderedSet.m | |
+1 −0 | include/CoreFoundation/CFInternal.h | |
+1 −1 | submodules/swift-corelibs-foundation |
Submodule foundation
updated
5 files
+3 −0 | src/NSAttributedStringInternal.h | |
+1 −0 | src/NSConcreteHashTableInternal.h | |
+2 −0 | src/NSGeometry.m | |
+1 −0 | src/NSOperation.m | |
+1 −0 | src/_NSFileIO.m |
Submodule groff
updated
7 files
Submodule libxpc
updated
7 files
+37 −420 | include/xpc/activity.h | |
+48 −704 | include/xpc/connection.h | |
+20 −18 | include/xpc/debug.h | |
+20 −17 | include/xpc/endpoint.h | |
+0 −2 | include/xpc/launchd.h | |
+14 −0 | include/xpc/private.h | |
+153 −2,527 | include/xpc/xpc.h |
Submodule security
updated
3 files
+4 −0 | darling/src/libDER/libDER/oids.h | |
+0 −4 | darling/src/libDER/libDER/oidsPriv.h | |
+3 −0 | securityd/securityd_service/securityd_service/securityd_service_client.h |
Submodule xnu
updated
6 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
#include <stddef.h> | ||
#include <LocalAuthentication/LAPrivateDefines.h> | ||
|
||
void* LAEvaluatePolicy() { | ||
return NULL; | ||
bool LAEvaluatePolicy(CFTypeRef context, int policy, CFMutableDictionaryRef options, CFErrorRef *error) { | ||
return false; | ||
}; | ||
|
||
void* LAVerifySEP() { | ||
return NULL; | ||
bool LAVerifySEP(uid_t pw_uid, CFErrorRef *error) { | ||
return false; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.