Revision history for Perl extension SDL_perl.
+* Aug 22 2009 Kartik Thakore <thakore.kartik@gmail.com>
+ -Added no index
+ -Added james's openbsd.pm
+
* Aug 18 2009 Kartik Thakore <thakore.kartik@gmail.com>
-Fixed constants with help from arodland
-Added warning instead of die for frozenbubble's sake
Luke
Kartik Thakore <thakore.kartik@gmail.com>
Gabor Szabo <szabgab@gmail.com>
-
+James Wright <jwright@cpan.org>
If you would like to contribute to SDL Perl, please post a message on the mailing list:
--- /dev/null
+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;