Changeset f56300d5e8f0fbbccadddf4c17460b8a58d4114c

Show
Ignore:
Timestamp:
09/15/07 19:41:19 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1189878079 +0000
git-parent:

[e7b6ffc1681e4e60c02510ae0f1f92cdec88ac36]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1189878079 +0000
Message:

Another MacOS compile fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/interface/interface.c

    rf02445b rf56300d  
    148148{ 
    149149#ifdef __APPLE__ 
     150# warning FIXME 
     151#if 0 
    150152    NSAutoreleasePool * o_pool; 
    151153 
    152154    /* If !clivlc, then run as a OS X application */ 
    153     if( p_intf->b_block && strncmp( p_intf->p_libvlc->psz_object_name, 
    154                                     "clivlc", 6) ) 
     155    if( strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6) ) 
    155156    { 
    156157        o_pool = [[NSAutoreleasePool alloc] init]; 
     
    167168        } 
    168169        vlc_object_kill( p_intf ); 
    169     } 
    170     else 
     170        return VLC_SUCCESS; 
     171    } 
     172#endif 
    171173#endif 
    172174