I've been using Red Hat since 1999 and Fedora Core since the start. OpenSSL is always a problem because Red Hat has a problem---For example, Fedora Core 5. The libraries are missing because they have not been linked properly. To link properly, you have to use ldconfig, and a lot of the rpms forget to do it. It's so bad that I always avoid rpms if possible and go for the source. What I did with OpenSSL was: ./configure --prefix=(where you want it). I always do --prefix so that at least I know where it is. Second, Perl is usually set up shared---so use --enable-shared. Third, --with-threads---again, Perl is usually threaded on Fedora. Fourth, and most important, --with-gnu-ld. Run make, make check, make install. After make install, (it's absolutely necessary to do this), run /sbin/ldconfig /usr/local/lib. The default location for libs is uasually /usr/local/lib, so I usually put the libs there---but the location depends on what your --prefix= is. If your prefix was --prefix=/usr/bin, then /sbin/ldconfig /usr/bin/lib. If you don't have threads or shared, then leave --enable-shared and --with-threads out. I hope this helps...

In reply to Re: Problem Installing Crypt::SSLeay by Khen1950fx
in thread Problem Installing Crypt::SSLeay by mohan123

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.