in reply to Re: SDL_Perl for Win32?
in thread SDL_Perl for Win32?
In seven or eight months of trying, I've personally never found a sensible answer to any of these questions.Most of those questions you can answer progamatically (and some you don't even have to answer), but asking the user sounds sensible to me (with shortcuts like perl Build.PL --opengl=-lmesa --smpeg --gfx ...).
What isn't sensible (imho) is something like
That is needless death right there (besides, its always LIB and only optionally LIBS). Since sdl-config won't exist on win32 (when dealing with MSVS), makes no sense to die if it doesn't exist, especially if SDL.h/SDL.lib area already in the include/lib path.package SDL::Build::MSWin32; ... sub find_header { for my $key (qw( LIBS PATH )) { die "Environment variable $key is empty\n" unless $ENV{$key}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SDL_Perl for Win32?
by chromatic (Archbishop) on Feb 03, 2005 at 07:41 UTC | |
by PodMaster (Abbot) on Feb 03, 2005 at 07:56 UTC |