aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-AnyEvent
Commit message (Collapse)AuthorAgeFilesLines
* - update to 2.5.2Yen-Ming Lee2007-03-252-7/+7
| | | | Notes: svn path=/head/; revision=188309
* - Update to 2.5.1Cheng-Lung Sung2007-01-022-5/+6
| | | | | | | | | | - Reset maintainership to perl@FreeBSD.org PR: ports/107373 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> Notes: svn path=/head/; revision=181232
* - Fix MakefileMartin Wilke2006-12-101-1/+1
| | | | | | | | | PR: ports/106550 Submitted by: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> Approved by: common sense Notes: svn path=/head/; revision=179364
* AnyEvent provides an identical interface to multiple event loops.Martin Wilke2006-12-094-0/+59
This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time). The interface itself is vaguely similar but not identical to the Event module. On the first call of any method, the module tries to detect the currently loaded event loop by probing wether any of the following modules is loaded: Coro::Event, Event, Glib, Tk. The first one found is used. If none is found, the module tries to load these modules in the order given. The first one that could be successfully loaded will be used. If still none could be found, AnyEvent will fall back to a pure-perl event loop, which is also not very efficient. WWW: http://search.cpan.org/dist/AnyEvent/ Noted: For index unbreak :( PR: ports/106527 Submitted by: Gea-Suan Lin <gslin at gslin.org> Notes: svn path=/head/; revision=179310