# File lib/phusion_passenger/native_support.rb, line 42
        def start
                if ENV['PASSENGER_USE_RUBY_NATIVE_SUPPORT'] == '0'
                        STDERR.puts " --> Continuing without #{library_name}."
                        STDERR.puts "     Because PASSENGER_USE_RUBY_NATIVE_SUPPORT is set to 0."
                        return false
                elsif try_load
                        return true
                elsif compile_and_load || download_binary_and_load
                        STDERR.puts " --> #{library_name} successfully loaded."
                        return true
                else
                        STDERR.puts " --> Continuing without #{library_name}."
                        return false
                end
        end