Wx-Scintilla
view release on metacpan or search on metacpan
0.17 2011.6.28
- Wx::Scintilla cannot exist with Wx::STC (MARKD)
- More simplified user-friendly build logs (AZAWAWI)
- Less warnings noise while compiling Scintilla on GTK, MSWgcc and OSX
(AZAWAWI)
0.16 2011.6.28
- Show a simplified version of commands and show the actual command when it
fails or interrupted with Ctrl-C unless perl Build.PL verbose=1 is used
(AZAWAWI)
- Fix RT #69115: Building Wx::Scintilla fails in relocatable perl (AZAWAWI)
0.15 2011.6.21
- Minor POD fix (AZAWAWI)
0.14 2011.6.21
- Ubuntu 11.04+ scrolling redraw fix http://trac.wxwidgets.org/ticket/13229
(MARKD)
- Added initial version of Wx::Scintilla::Manual (AZAWAWI)
- Removed File::ShareDir lookup as scintilla DLL is now side by side with
the XS DLL (MARKD)
inc/Module/Build/Scintilla.pm view on Meta::CPAN
sub stc_prebuild_check { 1; }
sub stc_wxconfig {
my $self = shift;
# not available on windows
return $self->{_wxstc_config_wxconfig} if $self->{_wxstc_config_wxconfig};
my $binpathconfig;
my $sympathconfig = Alien::wxWidgets->prefix . '/bin/wx-config';
# sometimes the symlink is broken - if there has been relocation etc.
# but we know where it should be if installed by Alien::wxWidgets
# For system installs, 'wx-config' should work
eval {
my $location = readlink($sympathconfig);
my @sympaths = split( /\//, $location );
my $testpath = Alien::wxWidgets->prefix . '/lib/wx/config/' . $sympaths[-1];
$binpathconfig = $testpath if -f $testpath;
};
( run in 0.898 second using v1.01-cache-2.11-cpan-5511b514fd6 )