apparently the macros are messed up
[sdlgit/SDL_perl.git] / Build.PL
old mode 100755 (executable)
new mode 100644 (file)
index b822271..6eec5c2
--- 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',
@@ -133,19 +141,25 @@ my $build   = SDL::Build->new(
                'Module::Build' => '0.22',
                'YAML'  => '0.68'
        },
+       configure_requires =>
+       {
+               'Alien::SDL'    => '0.07',
+               'ExtUtils::CBuilder' => '0.260301'
+       },
        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> ] },
+               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>',
 );
 
+
 # and here's where the real (and ugly) magic works... see SDL::Build
 $build->set_flags(
        \%subsystems,