0.81
[email protected] (Joshua N Pritikin)
| Newsgroups | perl.loop |
|---|---|
| Message-ID | <[email protected]> |
Very minor stuff.
--
May the best description of competition prevail.
(via, but not speaking for Deutsche Bank)
81
(text/plain, 3.4 KB)
# This is a patch for Event-0.80 to update it to Event-0.81 # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### gdiff -up '/usr/tmp/mp23303.d/old/Event-0.80/ChangeLog' '/usr/tmp/mp23303.d/new/Event-0.81/ChangeLog' Index: ./ChangeLog --- ./ChangeLog Thu Dec 7 15:16:53 2000 +++ ./ChangeLog Wed Jan 31 12:08:00 2001 @@ -1,3 +1,15 @@ +2001-01-31 Joshua Pritikin <[email protected]> + + * Release 0.81. + +2001-01-25 Joshua Pritikin <[email protected]> + + * Fix callback.t fail without Time::HiRes. + +2000-12-08 Joshua Pritikin <[email protected]> + + * Fix typo in EventAPI.h. + 2000-12-07 Joshua Pritikin <[email protected]> * Release 0.80. gdiff -up '/usr/tmp/mp23303.d/old/Event-0.80/lib/Event.pm' '/usr/tmp/mp23303.d/new/Event-0.81/lib/Event.pm' Index: ./lib/Event.pm --- ./lib/Event.pm Tue Dec 5 09:19:58 2000 +++ ./lib/Event.pm Wed Jan 31 12:08:09 2001 @@ -13,7 +13,7 @@ use Carp; eval { require Carp::Heavy; }; # work around perl_call_pv bug XXX use vars qw($VERSION @EXPORT_OK $API $DebugLevel $Eval $DIED $Now); -$VERSION = '0.80'; +$VERSION = '0.81'; # If we inherit DynaLoader then we inherit AutoLoader; Bletch! require DynaLoader; gdiff -up '/usr/tmp/mp23303.d/old/Event-0.80/lib/Event/EventAPI.h' '/usr/tmp/mp23303.d/new/Event-0.81/lib/Event/EventAPI.h' Index: ./lib/Event/EventAPI.h --- ./lib/Event/EventAPI.h Tue Dec 5 16:30:01 2000 +++ ./lib/Event/EventAPI.h Fri Dec 8 11:47:18 2000 @@ -215,9 +215,9 @@ struct EventAPI { void *(*sv_2watcher)(SV *sv); SV *(*event_2sv)(pe_event *ev); void *(*sv_2event)(SV *sv); - int (*sv_2interval)(char *label, SV *in, double *out); - SV (*events_mask_2sv)(int mask); - int (*sv_2events_mask)(SV *sv, int bits); + int (*sv_2interval)(char *label, SV *in, double *out); + SV *(*events_mask_2sv)(int mask); + int (*sv_2events_mask)(SV *sv, int bits); /* EVERYTHING ELSE */ void (*unloop)(SV *); gdiff -up '/usr/tmp/mp23303.d/old/Event-0.80/t/callback.t' '/usr/tmp/mp23303.d/new/Event-0.81/t/callback.t' Index: ./t/callback.t --- ./t/callback.t Tue Dec 5 09:19:09 2000 +++ ./t/callback.t Wed Jan 10 10:41:16 2001 @@ -29,6 +29,10 @@ ok $@, '/Callback/'; ok $run->w->desc, 'nomethod'; ok $err, '/object method/'; }; + local $SIG{__WARN__} = sub {}; + Event::loop(); +} +{ my $warn=''; local $SIG{__WARN__} = sub { $warn .= $_[0]; #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Wed Jan 31 12:14:33 2001 # Generated by : makepatch 2.00 (2.0BETA) # Recurse directories : Yes # p 'ChangeLog' 27189 980960880 0100444 # p 'lib/Event.pm' 4709 980960889 0100444 # p 'lib/Event/EventAPI.h' 6126 976294038 0100444 # p 't/callback.t' 806 979141276 0100444 #### End of ApplyPatch data #### #### End of Patch kit [created: Wed Jan 31 12:14:33 2001] #### #### Checksum: 97 3452 61569 ####