# File ext/icanhasaudio/extconf.rb, line 12
  def find_header(header, *paths)
    header = cpp_include(header)
    checking_for header do
      if try_cpp(header)
        true
      else
        found = false
        paths.each do |dir|
          opt = "-I#{dir}".quote
          if try_cpp(header, opt)
            $CPPFLAGS << " " << opt
            found = true
            break
          end
        end
        found
      end
    end
  end