From d43b9f79a17c1625e1127a04f239c06dba931a4b Mon Sep 17 00:00:00 2001 From: Cheng-Lung Sung Date: Wed, 5 Jul 2006 00:13:48 +0000 Subject: [PATCH] - Update to 1.0.1 PR: ports/99793 Submitted by: maintainer (Alexander Zhuravlev) --- www/pecl-pecl_http/Makefile | 2 +- www/pecl-pecl_http/distinfo | 6 +++--- www/pecl-pecl_http/files/patch-php_http.h | 15 --------------- 3 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 www/pecl-pecl_http/files/patch-php_http.h diff --git a/www/pecl-pecl_http/Makefile b/www/pecl-pecl_http/Makefile index bbe7b2d5dd1d..d77b656168d8 100644 --- a/www/pecl-pecl_http/Makefile +++ b/www/pecl-pecl_http/Makefile @@ -6,7 +6,7 @@ # PORTNAME= pecl_http -DISTVERSION= 1.0.0 +DISTVERSION= 1.0.1 CATEGORIES= www pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff --git a/www/pecl-pecl_http/distinfo b/www/pecl-pecl_http/distinfo index 61b331f30662..1a4cad785ba6 100644 --- a/www/pecl-pecl_http/distinfo +++ b/www/pecl-pecl_http/distinfo @@ -1,3 +1,3 @@ -MD5 (PECL/pecl_http-1.0.0.tgz) = f21c770c8608329256f9c712a9e21319 -SHA256 (PECL/pecl_http-1.0.0.tgz) = e0717ce977164cf37fd9e8d81616546be3f21a3103464208b1e1375fa8abbc93 -SIZE (PECL/pecl_http-1.0.0.tgz) = 185967 +MD5 (PECL/pecl_http-1.0.1.tgz) = 3246a4a1fb9297f91abd8585ee98ae7d +SHA256 (PECL/pecl_http-1.0.1.tgz) = 39b2e1c6fe87f18bf1786d4dcbbac7117290eb2ecf1fbf1cc3898c68d137a1eb +SIZE (PECL/pecl_http-1.0.1.tgz) = 185893 diff --git a/www/pecl-pecl_http/files/patch-php_http.h b/www/pecl-pecl_http/files/patch-php_http.h deleted file mode 100644 index 9d5347d334c7..000000000000 --- a/www/pecl-pecl_http/files/patch-php_http.h +++ /dev/null @@ -1,15 +0,0 @@ ---- php_http.h.orig Fri Jun 9 02:10:44 2006 -+++ php_http.h Sun Jun 11 17:06:51 2006 -@@ -144,7 +144,11 @@ - # define HTTP_G (&http_globals) - #endif - --#define HTTP_HAVE_EXT(EXT) ((defined(HAVE_##EXT) || defined(HAVE_PHP_##EXT) || defined(HAVE_##EXT##_EXT)) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_##EXT))) -+#if defined(__GNUC__) && (__GNUC__ < 3) -+# define HTTP_HAVE_EXT(EXT) 0 -+#else -+# define HTTP_HAVE_EXT(EXT) ((defined(HAVE_##EXT) || defined(HAVE_PHP_##EXT) || defined(HAVE_##EXT##_EXT)) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_##EXT))) -+#endif - - PHP_FUNCTION(http_test); - PHP_FUNCTION(http_date);