Skip to content

Commit

Permalink
CocoaAsyncSocket: Use CoreServices on OSX, not CFNetwork
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeredpath committed Feb 3, 2012
1 parent 442b5d7 commit 133d949
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CocoaAsyncSocket/0.0.1/CocoaAsyncSocket.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ Pod::Spec.new do |s|

s.source_files = '{GCD,RunLoop}/*.{h,m}'
s.clean_paths = 'Vendor', 'GCD/Xcode', 'RunLoop/Xcode'
s.framework = 'CFNetwork'

if config.ios?
s.frameworks = 'CFNetwork'
else
s.frameworks = 'CoreServices'
end
end

0 comments on commit 133d949

Please sign in to comment.