Added Utility to MANIFEST
Kartik Thakore [Tue, 11 Aug 2009 08:20:24 +0000 (04:20 -0400)]
MANIFEST
META.yml
src/SDL.xs

index fdac3d0..fbccbd3 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -40,6 +40,7 @@ make/lib/SDL/Build/Linux.pm
 make/lib/SDL/Build/MSWin32.pm
 make/lib/SDL/Build/Netbsd.pm
 make/lib/SDL/Build.pm
+make/lib/SDL/Utility.pm
 MacOSX/Info.plist
 MacOSX/launcher.h
 MacOSX/launcher.m
index cdb7a5f..43e59b6 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,19 +1,21 @@
 ---
 name: SDL_Perl
-version: 2.2.0
+version: v2.2.1
 author:
   - 'David J. Goehrig <DGOEHRIG@cpan.org>'
 abstract: Simple DirectMedia Layer for Perl
 license: lgpl
 resources:
-  license: http://opensource.org/licenses/lgpl-license.php
+  license: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
 build_requires:
   Module::Build: 0.22
   Test::Simple: 0.47
+configure_requires:
+  Module::Build: 0.34
 provides:
   SDL:
     file: lib/SDL.pm
-    version: 2.2.0
+    version: v2.2.1
   SDL::App:
     file: lib/SDL/App.pm
   SDL::Cdrom:
@@ -70,7 +72,7 @@ provides:
     file: lib/SDL_perl.pm
   Walker:
     file: lib/SDL/Tutorial/Images.pm
-generated_by: Module::Build version 0.33
+generated_by: Module::Build version 0.34
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
   version: 1.4
index 599340d..b7aab01 100644 (file)
@@ -3105,6 +3105,7 @@ TTFCloseFont ( font )
        TTF_Font *font
        CODE:
                TTF_CloseFont(font);
+               font=NULL; //to be safe http://sdl.beuc.net/sdl.wiki/SDL_ttf_copy_Functions_Management_TTF_CloseFont
 
 SDL_Surface*
 TTFPutString ( font, mode, surface, x, y, fg, bg, text )