Hi,

As the current maintainer of Alien::wxWidgets I thought I had better check that the current version does build perfectly well with currently Strawberry Perl. I can confirm that it does.

My steps to confirming this on a 32 bit machine were:

1. Download the zip package of Strawberry 5.16.3.1 - I have multiple Perl installations and did not want the Strawberry msi messing with my environment.

2. Extract the zip contents to C:\Perl\strawberry5163

3. Run the relocation batch file C:\Perl\strawberry5163\relocation.pl.bat. I did this by just double clicking in explorer.

4. As I didn't use the MSI I need to have a batch file to open a command prompt with the correct environment, so I created strawb5163.bat with the following 5 line content:

set PATH=C:\Perl\strawberry5163\perl\bin;%PATH%
set PATH=C:\Perl\strawberry5163\perl\vendor\bin;%PATH%
set PATH=C:\Perl\strawberry5163\perl\site\bin;%PATH%
set PATH=C:\Perl\strawberry5163\c\bin;%PATH%
cmd /K

I ran this batch file to open a command prompt. I downloaded Alien-wxWidgets-0.64.tar.gz from CPAN and extracted the content. I changed to the resulting directory within my command prompt and did:

perl Build.PL

I answerwed yes to 'download and build' and selected '2.9.4'.

It all built with no problems using the usual

perl Build
perl Build test
perl Build install

I don't know why you would think messing around with the wxWidgets source might help.

Anyhow, I would suggest you build with the following to get a fully featured Wx / wxWidgets

perl Build.PL --wxWidgets-graphicscontext
perl Build
perl Build test
perl Build install


In reply to Re: Build of Alien::wxWidgets failing: help by markwx
in thread Build of Alien::wxWidgets failing: help by HelenCr

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.