- Update to 0.2.4

PR:		178088
Submitted by:	maintainer
This commit is contained in:
Martin Wilke 2013-04-29 14:25:42 +00:00
parent 4befd4d642
commit 8bc54cac8f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=316823
4 changed files with 3 additions and 25 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= ev
PORTVERSION= 0.2.3
PORTVERSION= 0.2.4
CATEGORIES= devel
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-

View File

@ -1,2 +1,2 @@
SHA256 (PECL/ev-0.2.3.tgz) = 80ca5927f19d55977677681a1ad8d498cef28a9d237456fe9c20925f4b19389f
SIZE (PECL/ev-0.2.3.tgz) = 92926
SHA256 (PECL/ev-0.2.4.tgz) = dd1cdba0d3f1364048028e0bc34ca2e2724f9cddf2ba19846e8ae7b604ef2d95
SIZE (PECL/ev-0.2.4.tgz) = 92978

View File

@ -1,11 +0,0 @@
--- watcher.c.orig 2013-01-28 21:38:15.000000000 +0800
+++ watcher.c 2013-01-28 21:38:24.000000000 +0800
@@ -27,7 +27,7 @@
extern zend_class_entry *ev_loop_class_entry_ptr;
/* {{{ php_ev_set_watcher_priority() */
-inline void php_ev_set_watcher_priority(ev_watcher *watcher, long priority TSRMLS_DC)
+void php_ev_set_watcher_priority(ev_watcher *watcher, long priority TSRMLS_DC)
{
PHP_EV_CHECK_PENDING_WATCHER(watcher);
ev_set_priority(watcher, priority);

View File

@ -1,11 +0,0 @@
--- watcher.h.orig 2013-01-28 21:38:20.000000000 +0800
+++ watcher.h 2013-01-28 21:38:27.000000000 +0800
@@ -131,7 +131,7 @@ void php_ev_set_watcher(ev_watcher *w, s
void *php_ev_new_watcher(size_t size, zval *self, php_ev_loop *loop,
const zend_fcall_info *pfci, const zend_fcall_info_cache *pfcc, zval *data, int priority TSRMLS_DC);
void php_ev_stop_watcher(ev_watcher *watcher TSRMLS_DC);
-inline void php_ev_set_watcher_priority(ev_watcher *watcher, long priority TSRMLS_DC);
+void php_ev_set_watcher_priority(ev_watcher *watcher, long priority TSRMLS_DC);
void php_ev_start_watcher(ev_watcher *watcher TSRMLS_DC);
#endif /* PHP_EV_WATCHER_H */