What to do?

File bug reports against ActivePerl.

It's not very professional that they automatically set out "to install dmake and the MinGW gcc compiler using Perl Package Manager" on their X64 builds of perl when:
1) They know that no suitable ppm package exists;
2) They know that the x64 builds of ActivePerl won't work with dmake and MinGW anyway. (Incidentally, for anyone interested, I can provide fixes to x64 Activeperl that allow it to work fine with dmake and the 64-bit MinGW compiler - ie allow it to work just like the 32-bit builds.)

The 'libConfig.pm' error crops up from time to time ... but not so often as to allow me to recall (with certainty) the cause of it. I *think* it happens when perl Makefile.PL writes a Makefile for nmake to process, but then the user throws a spanner in the works by running dmake instead.
It's important that the flavour of make that you run is whatever is reported by perl -V:make

Iff this module that you're trying to build is pure perl, then there's a chance that you can do it with dmake alone iff you follow these steps:
1) Prepend the location of dmake.exe to (the beginning of) your PATH env var;
2) Check that perl -V:make reports 'dmake' (or '\full\path\to\dmake.exe', as the case may be);
3) In the top level source folder, remove the file named Makefile
4) In the top level source folder run perl Makefile.PL followed by dmake test followed by dmake install
5) For me the dmake install can take a minute or so before anything happens ... be patient.

Cheers,
Rob

In reply to Re: Installing WordNet::QueryData on Win7/Perl64 by syphilis
in thread Installing WordNet::QueryData on Win7/Perl64 by cormanaz

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.