In the 'installer' Perl script, very early on, I check for the installed version of Perl. I need to trap this result in the application and explain to the person who is doing the install what the problem is, even if they don't know Perl.

I don't remember where I found this but it tells me if the installed Perl is 5.12 or higher.

use version; ... sub checkPerlVer { my $minVer = shift; # eg '5.12' my $installVer = `perl -v|grep -E '(v[1-9.]+)'`; if ($installVer =~ /\((v[\d+.]+)\)/){ #print "match $1\n"; my $reVer = $1; my $iver= version->parse($reVer); my $mver= version->parse($minVer); printf "Minimum Perl=$mver Installed Perl=$iver \n"; if ($mver <= $iver) { print "OK \n"; return 1; #OK }else{ print "NOPE\n"; return 0; #NOT OK } }else{ print "No version found: <$installVer>\n"; return 0; } }

It is always better to have seen your target for yourself, rather than depend upon someone else's description.


In reply to Re^2: Why not include version.pm by Wiggins
in thread Why not include version.pm by Wiggins

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.