# File extconf.rb, line 17
def find_required_framework(local_fw_path)
    path_search = ["/Library/Frameworks/", "/System/Library/Frameworks/"]

    checking_for("#{local_fw_path}") {
        path_search.find { |dir|
            FileTest.directory?(dir + local_fw_path)
        }
    }
end