Changeset 9159


Ignore:
Timestamp:
Sep 23, 2009, 3:28:11 PM (13 years ago)
Author:
charles
Message:

(trunk libT) #2416: possible fix for 'crash in event_queue_insert' on Snow Leopard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/web.c

    r9069 r9159  
    3636    if( !tested )
    3737    {
     38#ifdef SYS_DARWIN /* for some reason, curl_multi_socket_action() + libevent
     39                     keeps crashing in event_queue_insert() on OS X 10.5 & 10.6 */
     40        useMultiSocketAction = FALSE;
     41#else
    3842        curl_version_info_data * data = curl_version_info( CURLVERSION_NOW );
    3943        tr_inf( "Using libcurl %s", data->version );
     
    4145         * if libcurl >= 7.18.2.  See http://trac.transmissionbt.com/ticket/1844 */
    4246        useMultiSocketAction = data->version_num >= 0x071202;
     47#endif
    4348        tested = TRUE;
    4449    }
Note: See TracChangeset for help on using the changeset viewer.