Author: Gunnar Wolf <gwolf@debian.org>
Forwarded: no
Last-updated: 2012-01-18
Description: Explicitly require kconv for Ruby1.9.1
 This module was always loaded under 1.8, but broke the tests under
 1.9.1. Including it if needed.

Index: ruby-ntlm/lib/net/ntlm.rb
===================================================================
--- ruby-ntlm.orig/lib/net/ntlm.rb	2012-01-18 13:56:57.000000000 -0600
+++ ruby-ntlm/lib/net/ntlm.rb	2012-01-18 14:22:39.000000000 -0600
@@ -45,6 +45,9 @@
 require 'base64'
 require 'openssl'
 require 'openssl/digest'
+if RUBY_VERSION > '1.9.1'
+  require 'kconv'
+end
 
 module Net  #:nodoc:
   module NTLM
