Skip to content

Commit 215b87a

Browse files
authored
Merge branch 'master' into fix-Data.count-setter
2 parents 6201f62 + 2bf476e commit 215b87a

38 files changed

+1808
-1299
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ find_package(dispatch CONFIG REQUIRED)
3030

3131
include(SwiftSupport)
3232
include(GNUInstallDirs)
33+
include(XCTest)
3334

3435
set(CF_DEPLOYMENT_SWIFT YES CACHE BOOL "Build for Swift" FORCE)
3536

CoreFoundation/Base.subproj/CFInternal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ CF_EXTERN_C_BEGIN
9797

9898
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
9999

100-
#if !TARGET_OS_CYGWIN && !defined(__linux__)
100+
#if TARGET_OS_MAC || (TARGET_OS_BSD && !defined(__OpenBSD__)) || TARGET_OS_ANDROID
101101
#include <xlocale.h>
102-
#endif // !TARGET_OS_CYGWIN && !defined(__linux__)
102+
#endif // TARGET_OS_MAC || (TARGET_OS_BSD && !defined(__OpenBSD__)) || TARGET_OS_ANDROID
103103

104104
#include <sys/time.h>
105105
#include <signal.h>

0 commit comments

Comments
 (0)