diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
commit | ba09f7ee95cee49a75d1ecb50f4be68f99de394a (patch) | |
tree | f7075798a9a1abe4f41bfb7a9ae6bd8387a1e92a /math/pecl-bitset2/files/patch-bitset.c | |
parent | sysutils/policykit-qt, sysutils/qzeitgeist: remove dead variable USE_KDE (diff) |
Remove expired ports:
2018-12-30 textproc/pecl-xdiff: Works only with EOL php 5.6
2019-01-01 www/mod_http2-devel: Use the module that is shipped with Apache 2.4
2019-01-01 www/varnish5: Varnish 5 is Retired
2018-12-30 security/pecl-ssh2-0: Works only with EOL php 5.6
2019-01-01 security/bitwarden-ruby: Expects very specific rubygem versions for new updates. Please follow instructions in git repo.
2018-12-30 devel/pecl-intl: Works only with EOL php 5.6
2018-12-30 devel/pecl-APCu4: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcache: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcached2: Works only with EOL php 5.6
2018-12-30 math/pecl-bitset2: Works only with EOL php 5.6
2019-01-01 multimedia/zoneminder-h264: h264 feature was commited to main branch, please upgrade to www/zoneminder
2019-01-01 lang/php56: Security Support ends on 31 Dec 2018
Notes
Notes:
svn path=/head/; revision=488894
Diffstat (limited to 'math/pecl-bitset2/files/patch-bitset.c')
-rw-r--r-- | math/pecl-bitset2/files/patch-bitset.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/math/pecl-bitset2/files/patch-bitset.c b/math/pecl-bitset2/files/patch-bitset.c deleted file mode 100644 index fd5d1b3f7fdd..000000000000 --- a/math/pecl-bitset2/files/patch-bitset.c +++ /dev/null @@ -1,20 +0,0 @@ ---- bitset.c.orig 2017-10-06 16:29:59 UTC -+++ bitset.c -@@ -652,7 +652,7 @@ PHP_METHOD(BitSet, previousClearBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - return; - } -@@ -696,7 +696,7 @@ PHP_METHOD(BitSet, previousSetBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - } - |