aboutsummaryrefslogtreecommitdiff
path: root/net-im/jabber-pyicq/files
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2007-01-15 11:51:58 +0000
committerRenato Botelho <garga@FreeBSD.org>2007-01-15 11:51:58 +0000
commit1d34b36c1cdc8d621fa91fe0c6c120b3c06ce336 (patch)
tree4095ae1442af3fde26789941000cea73928aa343 /net-im/jabber-pyicq/files
parent6bbb9da3770553faafae015771e0c1292d8e5d47 (diff)
downloadports-1d34b36c1cdc8d621fa91fe0c6c120b3c06ce336.tar.gz
ports-1d34b36c1cdc8d621fa91fe0c6c120b3c06ce336.zip
Notes
Diffstat (limited to 'net-im/jabber-pyicq/files')
-rw-r--r--net-im/jabber-pyicq/files/patch-src_main.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/net-im/jabber-pyicq/files/patch-src_main.py b/net-im/jabber-pyicq/files/patch-src_main.py
new file mode 100644
index 000000000000..5bff1b8f8fc2
--- /dev/null
+++ b/net-im/jabber-pyicq/files/patch-src_main.py
@@ -0,0 +1,14 @@
+--- src/main.py.orig Sat Sep 30 16:44:21 2006
++++ src/main.py Sun Jan 14 19:52:36 2007
+@@ -89,7 +89,10 @@
+ import signal
+ signal.signal(signal.SIGHUP, reloadConfig)
+ # Load scripts for PID and daemonizing
+- from twisted.scripts import twistd
++ try:
++ from twisted.scripts import _twistd_unix as twistd
++ except:
++ from twisted.scripts import twistd
+
+ selectWarning = "Unable to install any good reactors (kqueue, cf, epoll, poll).\nWe fell back to using select. You may have scalability problems.\nThis reactor will not support more than 1024 connections +at a time. You may silence this message by choosing 'select' or 'default' as your reactor in the transport config."
+ if config.reactor and len(config.reactor) > 0: