diff -urN wget-1.16.3/tests/Test-proxied-https-auth-keepalive.px wget-1.16.3patch/tests/Test-proxied-https-auth-keepalive.px
--- wget-1.16.3/tests/Test-proxied-https-auth-keepalive.px	2014-11-05 07:42:24 +0000
+++ wget-1.16.3patch/tests/Test-proxied-https-auth-keepalive.px	2015-09-27 22:22:42 +0000
@@ -29,7 +29,11 @@
 
 use HTTP::Daemon;
 use HTTP::Request;
-use IO::Socket::SSL;
+# Skip this test rather than fail it when the module isn't installed
+if  (!eval {require IO::Socket::SSL;1;}) {
+    exit 77; # skip
+}
+IO::Socket::SSL->import();
 
 my $SOCKET = HTTP::Daemon->new (LocalAddr => 'localhost',
     ReuseAddr => 1) or die "Cannot create server!!!";
diff -urN wget-1.16.3/tests/Test-proxied-https-auth.px wget-1.16.3patch/tests/Test-proxied-https-auth.px
--- wget-1.16.3/tests/Test-proxied-https-auth.px	2014-11-05 07:42:24 +0000
+++ wget-1.16.3patch/tests/Test-proxied-https-auth.px	2015-09-27 22:22:08 +0000
@@ -29,7 +29,11 @@
 
 use HTTP::Daemon;
 use HTTP::Request;
-use IO::Socket::SSL;
+# Skip this test rather than fail it when the module isn't installed
+if  (!eval {require IO::Socket::SSL;1;}) {
+    exit 77; # skip
+}
+IO::Socket::SSL->import();
 
 my $SOCKET = HTTP::Daemon->new (LocalAddr => 'localhost',
     ReuseAddr => 1) or die "Cannot create server!!!";
