Updated build. Changelog and Contributors
Kartik Thakore [Sat, 22 Aug 2009 14:55:37 +0000 (10:55 -0400)]
CHANGELOG
CONTRIBUTORS
make/lib/SDL/Build/Openbsd.pm [new file with mode: 0644]

index d9c8f3e..c5e1bf1 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,9 @@
 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
index f186d76..f28d8d7 100644 (file)
@@ -19,7 +19,7 @@ Thomas Tongue
 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:
 
diff --git a/make/lib/SDL/Build/Openbsd.pm b/make/lib/SDL/Build/Openbsd.pm
new file mode 100644 (file)
index 0000000..078c0ee
--- /dev/null
@@ -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;