Skip to content

Commit

Permalink
Curl now depends on a symbol from SystemConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed May 29, 2021
1 parent 4f849d1 commit a5db651
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ruby_supportlib/phusion_passenger/platform_info/curl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ module PhusionPassenger
module PlatformInfo
def self.curl_flags
result = `(curl-config --cflags) 2>/dev/null`.strip
if os_name_simple == "macosx"
result << ' -framework Foundation -framework SystemConfiguration'
end
if result.empty?
return nil
else
Expand Down

0 comments on commit a5db651

Please sign in to comment.