You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
Index: Crypt-SSLeay-0.57/Makefile.PL |
|
--- Crypt-SSLeay-0.57/Makefile.PL.orig 2007-09-17 22:36:59 +0200 |
|
+++ Crypt-SSLeay-0.57/Makefile.PL 2008-07-16 22:39:05 +0200 |
|
@@ -35,15 +35,7 @@ |
|
} |
|
else { |
|
# Unix and the rest |
|
- @POSSIBLE_SSL_DIRS = qw( |
|
- /local |
|
- /local/ssl |
|
- /opt/ssl |
|
- /usr |
|
- /usr/local |
|
- /usr/local/ssl |
|
- /usr/local/openssl |
|
- ); |
|
+ @POSSIBLE_SSL_DIRS = qw(/usr); |
|
} |
|
|
|
my @CANDIDATE = do { |
|
Index: IO-Socket-SSL-1.14/Makefile.PL |
|
--- IO-Socket-SSL-1.14/Makefile.PL.orig 2008-02-22 08:10:38 +0100 |
|
+++ IO-Socket-SSL-1.14/Makefile.PL 2008-07-16 22:39:05 +0200 |
|
@@ -97,3 +97,4 @@ |
|
'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz', }, |
|
'NO_META' => 1, |
|
); |
|
+ |
|
Index: IO-Socket-SSL-1.14/SSL.pm |
|
--- IO-Socket-SSL-1.14/SSL.pm.orig 2008-07-16 11:13:58 +0200 |
|
+++ IO-Socket-SSL-1.14/SSL.pm 2008-07-16 22:42:23 +0200 |
|
@@ -563,10 +563,7 @@ |
|
|
|
sub read { |
|
my $self = shift; |
|
- return $self->generic_read( |
|
- $self->blocking ? \&Net::SSLeay::ssl_read_all : \&Net::SSLeay::read, |
|
- @_ |
|
- ); |
|
+ return $self->generic_read(\&Net::SSLeay::read, @_); |
|
} |
|
|
|
# contrary to the behavior of read sysread can read partial data |
|
Index: Net-SSLeay-1.32/Makefile.PL |
|
--- Net-SSLeay-1.32/Makefile.PL.orig 2007-07-14 22:01:26 +0200 |
|
+++ Net-SSLeay-1.32/Makefile.PL 2008-07-16 22:39:05 +0200 |
|
@@ -11,10 +11,8 @@ |
|
ssleay(); |
|
|
|
build_requires('Sub::Uplevel'); |
|
-build_requires('Test::Exception'); |
|
build_requires('Array::Compare'); |
|
build_requires('Tree::DAG_Node'); |
|
-build_requires('Test::Warn'); |
|
requires('MIME::Base64'); |
|
|
|
clean_files(map { fixpath($_) } qw( |
|
@@ -33,3 +31,4 @@ |
|
|
|
auto_install(); |
|
WriteAll(); |
|
+
|
|
|