After on-again off-again attempts for at least 3 months, we've finally managed to find a combination of libexpat and XML::Parser that configures, builds and passes tests inside the Perl:Dist C/Perl build environment.
The winning combination was a Steffen Muller PAR package of libexpat that contained BOTH the static and shared
The reason that the
Since
(Incidentally, perl/bin is where perl588.dll lives anyways)
Support for expat/XML::Parser is currently hand-hacked into Vanilla, but will shortly move into the Perl::Dist core as ->install_expat (for the expat part).
With both the PAR and XML::Parser features green, the next step will be to get PPM support added, most likely via the core PPM.pm module, and the PAR-translation layer (that converts PPM to PAR on the fly).
In other news, I continue to investigate what it will take to convert to an
My favourite example so far is that every component/file in the distribution needs to be allocated a GUID that the Microsoft installer system can then track.
That itself isn't the problem.
The problem is that you need to REUSE the same GUIDs for EVERY SINGLE RELEASE of a particular named product. So every time you build an installer, you need to make use of (and update) an eternal GUID state cache that semantically understands which files live where.
This means builds are no longer able to be treated in isolated form and everything gets way more complicated.
Eeep.
GUIDs (Score:1)
Re: (Score:1)
Unfortunately, WiX also has the concept of a "component" which is very high resolution. In the context of a typical CPAN install, every module in the dependency chain would need to be a component.
Re: Perl::Dist adds support for libexpat and XML:: (Score:1)
Actually, it's enough if the .dll file resides in the same directory as the executable. That's also the preferred location if you distribute application specific .dlls and the first location Windows looks for .dlls to be loaded. Also, that's the same location the perl58.dll lives. $ENV{PATH} comes into play later.
Re: (Score:1)
At least that leaves the option open to remove PATH from the environment in some cases.