Added windows message for help
[sdlgit/SDL_perl.git] / Build.PL
index cc80c12..328eec3 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -11,21 +11,14 @@ use lib  'make/lib';
 
 use Data::Dumper;
 use SDL::Build;
+use SDL::Utility;
 use YAML;
 use YAML::Node;
 
-my $sdl_compile_flags = `sdl-config --cflags`;
-my $sdl_link_flags    = `sdl-config --libs`;
-
-if ($? >> 8)
-{
-       croak "SDL doesn't appear to be installed.\n" .
-               "Please check that sdl-config is in your path and try again.\n";
-}
-
-chomp( $sdl_compile_flags );
-chomp( $sdl_link_flags );
+croak 'Windows support is currently broken. If you are interested in helping please contact us at sdl-devel\@perl.org.' if ($^O eq 'MSWin32' || $^O eq 'MSWin64' || $^O eq 'cygwin' );
 
+my $sdl_compile_flags = SDL::Utility->sdl_c_flags();
+my $sdl_link_flags    = SDL::Utility->sdl_libs();
 # subsystem to build
 #      file
 #              location of source file => location of build file to get name right
@@ -133,6 +126,7 @@ my $build   = SDL::Build->new(
        {
                'Test::Simple' => '0.47',
                'Module::Build' => '0.22',
+               'YAML'  => '0.68'
        },
        build_recommends     =>
        {
@@ -140,6 +134,10 @@ my $build   = SDL::Build->new(
        },
        c_source             => 'src',
        xs_files             => \%xs,
+       meta_add             =>      
+       {
+               no_index =>  { file => [ <make/lib/SDL/*.pm>, <make/lib/SDL/Build/*.pm> ] },
+       },
        dist_author          => 'David J. Goehrig <DGOEHRIG@cpan.org>',
 );
 
@@ -153,6 +151,5 @@ $build->set_flags(
        $sdl_compile_flags,
        $sdl_link_flags,
 );
-
 # now we're ready to go!
 $build->create_build_script();