Skip to content

Commit

Permalink
Fixed Build.PL. kthakore++
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaizer committed Oct 4, 2011
1 parent 8320fd1 commit be9bca4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Build.PL
Expand Up @@ -6,8 +6,8 @@ use My::Module::Build;
use Alien::SDL;
use ExtUtils::CBuilder;

my @cflags = ( Alien::SDL->config('cflags'), File::Spec->catfile('-I' . Alien::SDL->config('prefix'), 'include') );
my @lflags = Alien::SDL->config('libs', '-lSDL_mixer');
my @cflags = ExtUtils::CBuilder->new->split_like_shell( File::Spec->catfile('-I' . Alien::SDL->config('prefix'), 'include') );
my @lflags = ExtUtils::CBuilder->new->split_like_shell( Alien::SDL->config('libs', '-lSDL_mixer') );

my $build = My::Module::Build->new(
module_name => 'Games::Neverhood',
Expand Down
2 changes: 1 addition & 1 deletion lib/Games/Neverhood/Image.xs
Expand Up @@ -4,7 +4,7 @@
#include "ppport.h"

#include <stdio.h>
#include <SDL.h>
#include <SDL/SDL.h>

typedef struct {
Uint16 format;
Expand Down

0 comments on commit be9bca4

Please sign in to comment.