r21884 - in /branches/upstream/libcache-fastmmap-perl/current: Cache-FastMmap-CImpl/CImpl.pm Cache-FastMmap-CImpl/mmap_cache.c Changes FastMmap.pm META.yml Makefile.PL

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Jun 19 14:08:43 UTC 2008


Author: eloy
Date: Thu Jun 19 14:08:38 2008
New Revision: 21884

URL: http://svn.debian.org/wsvn/?sc=1&rev=21884
Log:
[svn-upgrade] Integrating new upstream version, libcache-fastmmap-perl (1.27)

Modified:
    branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm
    branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/mmap_cache.c
    branches/upstream/libcache-fastmmap-perl/current/Changes
    branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm
    branches/upstream/libcache-fastmmap-perl/current/META.yml
    branches/upstream/libcache-fastmmap-perl/current/Makefile.PL

Modified: branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/CImpl.pm Thu Jun 19 14:08:38 2008
@@ -15,7 +15,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '1.26';
+our $VERSION = '1.27';
 
 require XSLoader;
 XSLoader::load('Cache::FastMmap::CImpl', $VERSION);

Modified: branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/mmap_cache.c
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/mmap_cache.c?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/mmap_cache.c (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Cache-FastMmap-CImpl/mmap_cache.c Thu Jun 19 14:08:38 2008
@@ -596,6 +596,7 @@
   void **val_ptr, int *val_len,
   MU32 *flags
 ) {
+  MU32 * slot_ptr;
 
   /* Increase read count for page */
   if (cache->enable_stats) {
@@ -604,7 +605,7 @@
   }
 
   /* Search slots for key */
-  MU32 * slot_ptr = _mmc_find_slot(cache, hash_slot, key_ptr, key_len, 0);
+  slot_ptr = _mmc_find_slot(cache, hash_slot, key_ptr, key_len, 0);
 
   /* Did we find a value? */
   if (!slot_ptr || *slot_ptr == 0) {

Modified: branches/upstream/libcache-fastmmap-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/Changes?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Changes (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Changes Thu Jun 19 14:08:38 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension Cache::FastMmap.
+
+1.27  Wed Jun 18 17:15 2008
+  - Fix non-ansi C code
+  - Remove debug flags
 
 1.26  Thu May 22 14:50 2008
   - Check for write failure when creating file

Modified: branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm (original)
+++ branches/upstream/libcache-fastmmap-perl/current/FastMmap.pm Thu Jun 19 14:08:38 2008
@@ -283,7 +283,7 @@
 use warnings;
 use bytes;
 
-our $VERSION = '1.26';
+our $VERSION = '1.27';
 
 use Cache::FastMmap::CImpl;
 

Modified: branches/upstream/libcache-fastmmap-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/META.yml?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/META.yml (original)
+++ branches/upstream/libcache-fastmmap-perl/current/META.yml Thu Jun 19 14:08:38 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Cache-FastMmap
-version:      1.26
+version:      1.27
 version_from: FastMmap.pm
 installdirs:  site
 requires:

Modified: branches/upstream/libcache-fastmmap-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcache-fastmmap-perl/current/Makefile.PL?rev=21884&op=diff
==============================================================================
--- branches/upstream/libcache-fastmmap-perl/current/Makefile.PL (original)
+++ branches/upstream/libcache-fastmmap-perl/current/Makefile.PL Thu Jun 19 14:08:38 2008
@@ -12,5 +12,5 @@
     'DIR'           => [
       'Cache-FastMmap-CImpl'
     ],
-	    'OPTIMIZE' => '-g -DDEBUG',
+#	    'OPTIMIZE' => '-g -DDEBUG -ansi -pedantic',
 );




More information about the Pkg-perl-cvs-commits mailing list