From: Kartik Thakore Date: Sat, 22 Aug 2009 14:55:37 +0000 (-0400) Subject: Updated build. Changelog and Contributors X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=495415933581de02af5ee38f43fb9cafad516523;p=sdlgit%2FSDL_perl.git Updated build. Changelog and Contributors --- diff --git a/CHANGELOG b/CHANGELOG index d9c8f3e..c5e1bf1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ Revision history for Perl extension SDL_perl. +* Aug 22 2009 Kartik Thakore + -Added no index + -Added james's openbsd.pm + * Aug 18 2009 Kartik Thakore -Fixed constants with help from arodland -Added warning instead of die for frozenbubble's sake diff --git a/CONTRIBUTORS b/CONTRIBUTORS index f186d76..f28d8d7 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -19,7 +19,7 @@ Thomas Tongue Luke Kartik Thakore Gabor Szabo - +James Wright If you would like to contribute to SDL Perl, please post a message on the mailing list: diff --git a/make/lib/SDL/Build/Openbsd.pm b/make/lib/SDL/Build/Openbsd.pm new file mode 100644 index 0000000..078c0ee --- /dev/null +++ b/make/lib/SDL/Build/Openbsd.pm @@ -0,0 +1,21 @@ +package SDL::Build::Openbsd; + +use base 'SDL::Build'; +# /usr/local +sub fetch_includes +{ + return ( + '/usr/local/include', => '/usr/local/lib', + '/usr/local/include/libpng' => '/usr/local/lib', + '/usr/local/include/GL' => '/usr/local/lib', + '/usr/local/include/SDL' => '/usr/local/lib', + '/usr/local/include/smpeg' => '/usr/local/lib', + + '/usr/include' => '/usr/lib', + + '/usr/X11R6/include' => '/usr/X11R6/lib', + '/usr/X11R6/include/GL' => '/usr/X11R6/lib', + ); +} + +1;