summaryrefslogtreecommitdiff
path: root/net/rabbitmq/patches
diff options
context:
space:
mode:
authorfhajny <fhajny>2015-08-26 01:17:11 +0000
committerfhajny <fhajny>2015-08-26 01:17:11 +0000
commit06d694731fa90d269414da8bf400394e9f795e47 (patch)
tree9067fafc8549aaeeaae6913b21e8c4c78436a06a /net/rabbitmq/patches
parent643fd0df6f09d5d0063487cc1d3e0420e9970b53 (diff)
downloadpkgsrc-06d694731fa90d269414da8bf400394e9f795e47.tar.gz
Update net/rabbitmq to 3.5.4
- rabbitmq-env.conf.bat Support on Windows - Fixed excessive SASL Logging on Windows - Added warn as Alias to warning - Added rabbitmqctl purge_queue - Added file_handle_cache:clear_read_cache/0 - Improved rabbitmqctl Error Messages - Kernel Polling Enabled Unconditionally by Default - Easier I/O Thread Pool Size Configuration - Higher I/O Thread Pool Size Default - Improved Heartbeat Timeout Logging - Fix: Recoverable Mirror Could Be Reset Due to Race Condition - Fix: Throughput Regression Fix - Fix: x-death headers can now safely be republished by clients - STOMP: Test Suite Upgraded to Stomp.py 4.x - STOMP: End Frame With a Newline Character
Diffstat (limited to 'net/rabbitmq/patches')
-rw-r--r--net/rabbitmq/patches/patch-aa22
1 files changed, 2 insertions, 20 deletions
diff --git a/net/rabbitmq/patches/patch-aa b/net/rabbitmq/patches/patch-aa
index 457f431a8dc..dd789a3a976 100644
--- a/net/rabbitmq/patches/patch-aa
+++ b/net/rabbitmq/patches/patch-aa
@@ -1,28 +1,10 @@
-$NetBSD: patch-aa,v 1.6 2012/03/22 11:58:58 fhajny Exp $
+$NetBSD: patch-aa,v 1.7 2015/08/26 01:17:11 fhajny Exp $
Support for Python 2.7, drop dependency on gsed.
---- Makefile.orig 2011-12-16 12:24:15.000000000 +0000
+--- Makefile.orig 2015-07-21 19:37:21.000000000 +0000
+++ Makefile
@@ -1,3 +1,4 @@
+SHELL=$(MAKE_SHELL)
TMPDIR ?= /tmp
RABBITMQ_NODENAME ?= rabbit
-@@ -26,6 +27,9 @@ QC_TRIALS ?= 100
- ifeq ($(shell python -c 'import simplejson' 2>/dev/null && echo yes),yes)
- PYTHON=python
- else
-+ifeq ($(shell python2.7 -c 'import simplejson' 2>/dev/null && echo yes),yes)
-+PYTHON=python2.7
-+else
- ifeq ($(shell python2.6 -c 'import simplejson' 2>/dev/null && echo yes),yes)
- PYTHON=python2.6
- else
-@@ -37,6 +41,7 @@ PYTHON=python
- endif
- endif
- endif
-+endif
-
- BASIC_PLT=basic.plt
- RABBIT_PLT=rabbit.plt