$ perl -MCrypt::SSLeay -e "print 'OK'" Can't find 'boot_Crypt__SSLeay' symbol in c:/Perl/site/lib/auto/Crypt/ +SSLeay/SSL eay.dll at -e line 0 Compilation failed in require. BEGIN failed--compilation aborted.
That's very strange. I've just downloaded the binary that ppm should have installed and the SSLeay.dll that ships with it definitely exports that symbol:
C:\temp\blib\arch\auto\Crypt\SSLeay>dumpbin /EXPORTS SSLeay.dll Microsoft (R) COFF/PE Dumper Version 7.00.9466 Copyright (C) Microsoft Corporation. All rights reserved. Dump of file SSLeay.dll File Type: DLL Section contains the following exports for SSLeay.dll 00000000 characteristics 476CA7C2 time date stamp Sat Dec 22 13:59:30 2007 0.00 version 1 ordinal base 2 number of functions 2 number of names ordinal hint RVA name 1 0 00003FD7 _boot_Crypt__SSLeay 2 1 00003FD7 boot_Crypt__SSLeay Summary 1000 .data 1000 .rdata 1000 .reloc 4000 .text
You can see quite clearly that boot_Crypt__SSLeay is there.

I can only conclude that either:
1) that's not the binary that was installed;
or
2) another different SSLeay.dll (one that doesn't export that symbol) is being found first.

You could check that 1) is not the problem by downloading the same binary as I did, extracting it to a temporary location, and copying SSLeay.dll across to your C:/Perl/site/lib/auto/Crypt/SSLeay directory. If, having done that, you still get the same error, then you will know for sure that a different SSLeay.dll is being found first.

Cheers,
Rob

In reply to Re^5: ActiveState Perl 10.x and Crypt::SSLeay not installed errors on Windows 2003 by syphilis
in thread ActiveState Perl 10.x and Crypt::SSLeay not installed errors on Windows 2003 by yeah

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.