[MacPorts] #26243: tmux-1.3 hangs (libevent issue)

MacPorts noreply at macports.org
Wed Aug 25 11:31:44 PDT 2010


#26243: tmux-1.3 hangs (libevent issue)
--------------------------------+-------------------------------------------
 Reporter:  aammarit@…          |       Owner:  macports-tickets@…                   
     Type:  defect              |      Status:  new                                  
 Priority:  Normal              |   Milestone:                                       
Component:  ports               |     Version:  1.9.1                                
 Keywords:  haspatch            |        Port:  tmux libevent                        
--------------------------------+-------------------------------------------
 System: 10.6.4
 Xcode: 3.2.3

 tmux keeps hanging if I put a #(command) in the status bar, after talking
 to the developer, he resolved the issue with a patch against libevent

 patch:
 {{{
 Index: poll.c
 ===================================================================
 RCS file: /cvs/src/lib/libevent/poll.c,v
 retrieving revision 1.15
 diff -u -p -r1.15 poll.c
 --- poll.c      21 Apr 2010 20:02:40 -0000      1.15
 +++ poll.c      19 Aug 2010 19:18:31 -0000
 @@ -78,7 +78,7 @@ const struct eventop pollops = {
         poll_del,
         poll_dispatch,
         poll_dealloc,
 -    0
 +       1 /* need reinit */
 };

 static void *
 Index: select.c
 ===================================================================
 RCS file: /cvs/src/lib/libevent/select.c,v
 retrieving revision 1.16
 diff -u -p -r1.16 select.c
 --- select.c    21 Apr 2010 21:02:47 -0000      1.16
 +++ select.c    19 Aug 2010 19:18:24 -0000
 @@ -91,7 +91,7 @@ const struct eventop selectops = {
         select_del,
         select_dispatch,
         select_dealloc,
 -       0
 +       1 /* need reinit */
 };

 static int select_resize(struct selectop *sop, int fdsz);
 }}}

-- 
Ticket URL: <http://trac.macports.org/ticket/26243>
MacPorts <http://www.macports.org/>
Ports system for Mac OS


More information about the macports-tickets mailing list