Added darwin build to Build.PL, fixed configure requires
[sdlgit/SDL_perl.git] / Build.PL
old mode 100755 (executable)
new mode 100644 (file)
index b822271..d1aeb89
--- a/Build.PL
+++ b/Build.PL
@@ -17,7 +17,7 @@ use YAML::Node;
 
 print STDERR <<BROKENWIN if ($^O =~ /MSWin.*|cygwin/ );
 ******************************** !!!WARNING!!! ******************************** 
-Windows support is currently broken - you can continue, but you've been warned! 
+Windows support is currently experimental - you can continue, but you've been warned! 
 If you are interested in helping please contact us at sdl-devel\@perl.org.
 *******************************************************************************
 BROKENWIN
@@ -41,6 +41,14 @@ my %subsystems =
                libraries => [qw( SDL SDL_image SDL_mixer SDL_net SDL_ttf SDL_gfx
                                  png jpeg smpeg )],
        },
+       Rect => {
+               file      => {
+                       from  => 'src/Rect.xs',
+                       to    => 'lib/SDL/Rect.xs',
+               },
+               libraries => [qw( SDL  )],
+       },
+       
        OpenGL => {
                file      => {
                        from => 'src/OpenGL.xs',
@@ -135,17 +143,31 @@ my $build   = SDL::Build->new(
        },
        build_recommends     =>
        {
-               'Pod::ToDemo'  => '0.20',
+               'Pod::ToDemo'  => '0.20'                
        },
        c_source             => 'src',
        xs_files             => \%xs,
        meta_add             =>      
        {
-               no_index =>  { file => [ <make/lib/SDL/*.pm>, <make/lib/SDL/Build/*.pm> ] },
+       configure_requires =>
+       {
+               'Alien::SDL'    => '0.06',
+               'ExtUtils::CBuilder' => '0.260301'
+       },
+
+               no_index =>  { file => [ <make/lib/SDL/*.pm>, <make/lib/SDL/Build/*.pm>, <make/lib/ExtUtils/CBuilder/*>, <make/lib/ExtUtils/*>, <make/lib/ExtUtils/CBuilder/Platform/Windows.pm> ] },
        },
        dist_author          => 'David J. Goehrig <DGOEHRIG@cpan.org>',
 );
 
+if($arch eq 'Darwin')
+{
+       $build->{c_source} = $arch->build_c_source( \%libraries, $build_systems );
+       $build->{c_sources} = $arch->build_c_sources( \%libraries, $build_systems );
+       $build->{install_base} = $arch->build_install_base( \%libraries, $build_systems );
+
+}
+
 # and here's where the real (and ugly) magic works... see SDL::Build
 $build->set_flags(
        \%subsystems,