Skip to content

Commit

Permalink
release 1.430
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Jan 4, 2012
1 parent ef8c357 commit 0d87516
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
16 changes: 9 additions & 7 deletions 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]
Expand Down Expand Up @@ -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
Expand All @@ -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]
Expand Down Expand Up @@ -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
Expand All @@ -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]
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -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:
Expand Down
14 changes: 7 additions & 7 deletions lib/Alien/SDL.pm
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -133,7 +133,7 @@ where '<libnick>' 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_<something>') 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()
Expand Down Expand Up @@ -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};
Expand Down Expand Up @@ -272,7 +272,7 @@ MARKER
else {
$stderr =~ s/[\r\n]$//;
$stderr =~ s/^\Q$src\E[\d\s:]*//;

print STDERR " NOK: ($stderr)\n";
return 0;
}
Expand Down Expand Up @@ -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});
Expand Down

0 comments on commit 0d87516

Please sign in to comment.