Skip to content

Commit

Permalink
support musl platform
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnzhou committed Oct 4, 2024
1 parent 29ee084 commit 7b6f7a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sources/LCLAuth/Utils/Security+LCLPingAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
import Foundation
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
import Security
#elseif os(Linux)
#elseif canImport(Glibc)
import Glibc
#elseif canImport(Musl)
import Musl
#else
#error("Unknown platform")
#endif
Expand Down

0 comments on commit 7b6f7a8

Please sign in to comment.