diff --git a/Changes b/Changes index a5a8fb6..93949e8 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Perl module Alien::SDL -1.428_7 Mon Jan 02 2012 +Versioning rule: public releases are even numbers, dev releases are odd. (same like perl dist) + +1.430 Wed Jan 04 2012 - readding source build sets that got lost [FROGGS] - adding extra PATH for make command like we do for configure on solaris [FROGGS] - setting LD_LIBRARY_PATH for GNU/kFreeBSD too so libs like SDL_image will find libSDL [FROGGS] @@ -101,7 +103,7 @@ Revision history for Perl module Alien::SDL - SDL_ttf 2.0.10 is released, changed url [FROGGS] 1.409 Fri July 09 2010 - - Fixed regex for mmx disable + - Fixed regex for mmx disable 1.408 Thr July 01 2010 -Yay Canada Day! - Messed up release version @@ -113,7 +115,7 @@ Revision history for Perl module Alien::SDL 1.406 Sun June 13 2010 - Added conditional ld path check for 64 bit libraries -1.405 Wed June 2nd 2010 +1.405 Wed June 2nd 2010 - searching more ld paths for libs [kthakore] {ticket #153} - removes old share dirs installs of Alien [kthakore] - searching for .dylib's, .so's and .bundle's on mac [FROGGS] @@ -164,8 +166,8 @@ Revision history for Perl module Alien::SDL - new Win32 binaries by FROGGS (now works well on WinXP & Win7) - typo fixes [dorkfish] -1.0 - - TODO for 1.0 release has been met so incrementing +1.0 + - TODO for 1.0 release has been met so incrementing 0.9.1 - extended Windows/32bit binaries made a default option @@ -176,7 +178,7 @@ Revision history for Perl module Alien::SDL - An updated windows pack [kmx] - Dependencies of SHA fixed [kmx] -0.8.2 +0.8.2 - Local sharedir building [kmx, FROGGS] - 64bit building [kthakore, kmx] - Darwin testing [Mike Stok, Stuart Watt, Chas Owens] and fixing [kthakore, kmx] @@ -192,7 +194,7 @@ Revision history for Perl module Alien::SDL 0.7.8 - Get and compile latest code for SDL, gfx, image, mixer, ttf and net -0.7.6 +0.7.6 - check if make failed or passed 0.06.1 Sat Sept 14 2009 diff --git a/README b/README index 26d0a6e..d339049 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Alien::SDL - building, finding and using SDL binaries VERSION - Version 1.428_7 + Version 1.430 SYNOPSIS Alien::SDL tries (in given order) during its installation: diff --git a/lib/Alien/SDL.pm b/lib/Alien/SDL.pm index 30ca881..546c5f2 100644 --- a/lib/Alien/SDL.pm +++ b/lib/Alien/SDL.pm @@ -16,11 +16,11 @@ Alien::SDL - building, finding and using SDL binaries =head1 VERSION -Version 1.428_7 +Version 1.430 =cut -our $VERSION = '1.428_7'; +our $VERSION = '1.430'; $VERSION = eval $VERSION; =head1 SYNOPSIS @@ -33,7 +33,7 @@ Alien::SDL tries (in given order) during its installation: script to locate SDL libs. perl ./Build.pl --with-sdl-config=/opt/sdl/bin/sdl-config - + or using default script name 'sdl-config' by running: perl ./Build.pl --with-sdl-config @@ -133,7 +133,7 @@ where '' is shortname for SDL related library like: SDL, SDL_gfx, SDL_n SDL_sound ... + some non-SDL shortnames e.g. smpeg, jpeg, png. NOTE: config('ld_') return an empty list/hash if you have decided to -use SDL libraries already installed on your system. This concerns 'sdl-config' +use SDL libraries already installed on your system. This concerns 'sdl-config' detection and detection via '$SDL_INST_DIR/bin/sdl-config'. =head2 check_header() @@ -231,7 +231,7 @@ sub check_header { print STDERR "[$package] Testing header(s): " . join(', ', @header); require ExtUtils::CBuilder; # PAR packer workaround - + my $config = {}; if($^O eq 'cygwin') { my $ccflags = $Config{ccflags}; @@ -272,7 +272,7 @@ MARKER else { $stderr =~ s/[\r\n]$//; $stderr =~ s/^\Q$src\E[\d\s:]*//; - + print STDERR " NOK: ($stderr)\n"; return 0; } @@ -316,7 +316,7 @@ sub _sdl_config_via_config_data elsif($param eq 'libs') { $val .= ' ' . join(' ', @add_libs) if scalar @add_libs; $val .= ' ' . Alien::SDL::ConfigData->config('additional_libs'); - } + } # handle @PrEfIx@ replacement if ($param =~ /^(ld_shared_libs|ld_paths)$/) { s/\@PrEfIx\@/$real_prefix/g foreach (@{$val});