summaryrefslogtreecommitdiff
path: root/ext/Storable
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate SVt_RV, and use SVt_IV to store plain references.Nicholas Clark2007-12-261-0/+6
| | | | | This frees up a scalar type for first class regular expressions. p4raw-id: //depot/perl@32734
* Swap SVt_RV and SVt_NV in the SV ordering.Nicholas Clark2007-12-261-1/+1
| | | p4raw-id: //depot/perl@32725
* Add const to a few prototypes. (Patch from Robin Barker.)Abhijit Menon-Sen2007-12-221-4/+4
| | | p4raw-id: //depot/perl@32693
* 2.18 release.Abhijit Menon-Sen2007-11-222-1/+7
| | | p4raw-id: //depot/perl@32447
* 5.00404 compile fix from Slaven Rezic.Abhijit Menon-Sen2007-11-221-0/+1
| | | p4raw-id: //depot/perl@32446
* For the 2.17 release.Abhijit Menon-Sen2007-11-162-1/+7
| | | p4raw-id: //depot/perl@32344
* Update the Storable changelog. Note that, while Storable's code isRafael Garcia-Suarez2007-11-131-0/+8
| | | | | in sync between the core and the CPAN, the tests are not. p4raw-id: //depot/perl@32302
* problems in ext/Storable/t/file_magic.t on EBCDIC platformChun Bing Ge2007-08-031-12/+12
| | | | | Message-Id: <OF9205F187.AEDD9A24-ON4825732C.0021701B-4825732C.002279E4@IBMCN> p4raw-id: //depot/perl@31678
* [rt.cpan.org #28537] PATCH for croak.t test failure Slaven_Rezic2007-07-291-4/+7
| | | | | | | | | | | | From: Slaven_Rezic via RT <bug-Storable@rt.cpan.org> Message-Id: <rt-3.6.HEAD-28249-1185700244-992.28537-4-0@rt.cpan.org> "The attached patch solves a possible failure in the croak.t test. It seems that in some version Config.pm pre-loads Carp.pm, causing the test to fail. The patch just makes sure that Config.pm is only loaded when building Storable within core perl." p4raw-id: //depot/perl@31664
* Re: Compress::Zlib, pack "C" and utf-8 [PATCH]Marc Lehmann2007-05-101-6/+3
| | | | | Message-ID: <20070412064153.GA22475@schmorp.de> p4raw-id: //depot/perl@31194
* Re: The Strict trapJohan Vromans2007-04-261-1/+1
| | | | | Message-ID: <m2lkggilud.fsf@phoenix.squirrel.nl> p4raw-id: //depot/perl@31082
* This was released as 2.16.Abhijit Menon-Sen2007-03-311-1/+1
| | | p4raw-id: //depot/perl@30804
* Add new hints files.Abhijit Menon-Sen2007-03-311-0/+2
| | | p4raw-id: //depot/perl@30803
* Seems that 5.6.x needs the same fix as 5.005_xx for dclone.tNicholas Clark2007-03-151-1/+1
| | | p4raw-id: //depot/perl@30595
* Re: [Patch] Fix some of the tests of Storable on Perl 5.004Sébastien Aperghis-Tramoni2007-03-153-7/+18
| | | | | | Message-ID: <1173961567.45f93b5f0fc9f@imp.free.fr> Date: Thu, 15 Mar 2007 13:26:07 +0100 p4raw-id: //depot/perl@30594
* Tweak to Storable to make dclone.t pass on 5.005_03.Nicholas Clark2007-03-151-1/+5
| | | p4raw-id: //depot/perl@30593
* Changes needed to get Storable to compile on 5.005_03.Nicholas Clark2007-03-141-0/+2
| | | | | Passing tests is a different matter... p4raw-id: //depot/perl@30589
* The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmaskNicholas Clark2007-01-251-3/+3
| | | | | of flags, not a boolean, so correct the documenation and callers. p4raw-id: //depot/perl@29977
* do $file; won't propagate errors from die, as do is an implicit eval.Nicholas Clark2007-01-082-2/+2
| | | | | So need to propagate errors with $@. p4raw-id: //depot/perl@29723
* Eliminate PVBM. Store fast Boyer-Moore tables in PVGV.Nicholas Clark2006-12-131-0/+5
| | | | | | Add the placeholder for new type, temporarily named BIND, for binding and aliasing in 6 on 5. p4raw-id: //depot/perl@29544
* re: [PATCH] Move Win32::* functions from win32/win32.c to ext/Win32/Win32.xsJan Dubois2006-12-111-0/+1
| | | | | Message-ID: <9moon29qtn5c23t9fer229ealsu06bkf11@4ax.com> p4raw-id: //depot/perl@29511
* Fixes for Storable.xs when compiling a threaded Perl with g++.Steve Peters2006-10-211-3/+3
| | | p4raw-id: //depot/perl@29071
* z/OS: CPAN-ized ext/ and lib/Jarkko Hietaniemi2006-07-132-4/+10
| | | | | Message-ID: <44B6A8B3.5070605@iki.fi> p4raw-id: //depot/perl@28568
* Coverity is a persistent beast. Hot on the tails of fixing one leak,Nicholas Clark2006-04-171-8/+31
| | | | | | | | | it notices a slightly earlier leak. (Which also suggests that marking bugs as RESOLVED isn't a great plan, as it's not clear whether that calls off the dogs of war. I'd much prefer it to be forced to scan again, and give a positve "all clear" (or more accurately "nowt wrong I can see with that")) p4raw-id: //depot/perl@27876
* Potential (?) memory leak in Storable.xs (Coverity)bah@longitude.com2006-04-151-2/+8
| | | | | | Message-ID: <1561.38.96.138.153.1145123650.squirrel@mail.longitude.com> Date: Sat, 15 Apr 2006 13:54:10 -0400 (EDT) p4raw-id: //depot/perl@27828
* Coverity reports that Storable can potentially cause a NULL pointerNicholas Clark2006-04-151-1/+5
| | | | | | dereference while iterating a hash. This should never happen unless the hash lies about how many keys it has, so croak if a fib is spotted. p4raw-id: //depot/perl@27825
* Use load_module() instead of perl_eval_sv("require $mod") toGisle Aas2005-12-121-16/+6
| | | | | | load modules. This is safer since $mod comes from an external source. p4raw-id: //depot/perl@26330
* Storable retrieve_lscalar fails for empty strings [PATCH]Gisle Aas2005-12-022-1/+12
| | | | | | | | Message-ID: <lr3blhndkd.fsf@caliper.activestate.com> and Message-ID: <lrwtisn062.fsf@caliper.activestate.com> p4raw-id: //depot/perl@26243
* Missing ; in Storable.xsGisle Aas2005-11-141-1/+1
| | | | | Message-ID: <lrhdafy0y9.fsf_-_@caliper.activestate.com> p4raw-id: //depot/perl@26122
* Fix code-before-declaration in boot_Storable added by 26107Steve Hay2005-11-141-0/+2
| | | p4raw-id: //depot/perl@26119
* Re: [PATCH] Enhanced Storable::read_magic()Gisle Aas2005-11-134-32/+632
| | | | | Message-ID: <lrhdah7eoc.fsf@caliper.activestate.com> p4raw-id: //depot/perl@26107
* Storable 0.1 compatibilityGisle Aas2005-11-114-5/+74
| | | | | | | | Message-ID: <lry83v712y.fsf@caliper.activestate.com> Also added an entry in the main MANIFEST file for the new test and a version bump in Storable.pm. p4raw-id: //depot/perl@26087
* [perl #30563] [PATCH] Storable::dclone fails for tied elementsSrezic@Iconmobile.Com2005-10-293-2/+29
| | | | | | | Message-ID: <rt-3.0.11-30563-91788.4.94870186951744@perl.org> Also, a version bump to Storable.pm. p4raw-id: //depot/perl@25881
* even more SymbianJarkko Hietaniemi2005-10-171-1/+1
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A61F@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@25782
* Typos in *.p[lm]Piotr Fusik2005-08-021-3/+3
| | | | | | From: "Piotr Fusik" <pfusik@op.pl> Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec> p4raw-id: //depot/perl@25261
* POD nitsRafael Garcia-Suarez2005-06-211-2/+2
| | | p4raw-id: //depot/perl@24928
* Storable/Storable.xs: make plain C functions staticAlexey Tourbin2005-06-151-10/+10
| | | | | Message-ID: <20050604234242.GW5867@solemn.turbinal.org> p4raw-id: //depot/perl@24848
* SvPVX_const() - part 3 ... and const'ing StorableSteve Peters2005-06-021-69/+69
| | | | | Message-Id: <20050531145543.GA8051@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@24670
* I think SvCUR() was intended rather than SvLEN()Nicholas Clark2005-06-011-1/+1
| | | p4raw-id: //depot/perl@24664
* Assorted 2.15 fixes.Abhijit Menon-Sen2005-05-232-4/+17
| | | p4raw-id: //depot/perl@24556
* Remove one const to ensure that the universe doesn't tip over.Abhijit Menon-Sen2005-05-231-1/+1
| | | | | (At least on AIX.) p4raw-id: //depot/perl@24555
* Move hv_name, hv_eiter and hv_riter into a new aux structure.Nicholas Clark2005-05-211-18/+41
| | | | | | Provide (more efficient) _get and _set macros. Adjust the core to use them. p4raw-id: //depot/perl@24526
* Move placeholders into a new rhash magic type.Nicholas Clark2005-05-211-1/+5
| | | p4raw-id: //depot/perl@24525
* Update XS code to declare PERL_UNUSED_DECL conditionallyNicholas Clark2005-05-201-6/+9
| | | p4raw-id: //depot/perl@24521
* Damnable applypatch nonsense.Abhijit Menon-Sen2005-05-201-0/+44
| | | p4raw-id: //depot/perl@24514
* Previously overlooked $SIG{DIE} patch from Slaven Rezic.Abhijit Menon-Sen2005-05-203-1/+5
| | | | | http://groups-beta.google.com/group/perl.perl5.porters/msg/2d10ba2c390ecc41 p4raw-id: //depot/perl@24512
* s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/Nicholas Clark2005-05-101-1/+1
| | | | | plus a couple of 1 byte sv_setpv()s too. p4raw-id: //depot/perl@24439
* Experiment with using the ptr_table code to hold the seen hashNicholas Clark2005-05-101-6/+80
| | | p4raw-id: //depot/perl@24436
* Simplify the debug and assert logic.Nicholas Clark2005-05-101-7/+0
| | | p4raw-id: //depot/perl@24435
* Change 24165 missed one s/class/classname/ in the debugging code.Nicholas Clark2005-05-101-1/+1
| | | p4raw-id: //depot/perl@24434