Changeset 5cc5eba266f423eaf13bdae36ea2d031bdcd9d3a

Show
Ignore:
Timestamp:
17/07/03 18:34:40 (5 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1058459680 +0000
git-parent:

[e397e422bbc537435688441c173d550e251bf3a3]

git-author:
Sam Hocevar <sam@videolan.org> 1058459680 +0000
Message:
  • Makefile.am: Parse mozilla after . so that the mozilla plugin gets its
    dependencies right.
  • src/stream_output/announce.c: Compilation fix.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Makefile.am

    r8c7b5a8 r5cc5eba  
    88# something. DIST_SUBDIRS stores the directories where nothing is built but 
    99# which have makefiles with distribution information. 
    10 SUBDIRS = intl modules mozilla . share po m4 
     10SUBDIRS = intl modules . mozilla share po m4 
    1111DIST_SUBDIRS = $(SUBDIRS) src debian doc ipkg lib autotools 
    1212 
  • src/stream_output/announce.c

    r0878dc5 r5cc5eba  
    289289 
    290290#if defined( UNDER_CE ) 
    291     i_ret = CloseHandle( (HANDLE)p_sap->i_handle ); 
     291    i_ret = CloseHandle( (HANDLE)p_sap->i_socket ); 
    292292#elif defined( WIN32 ) 
    293     i_ret = closesocket( p_sap->i_handle ); 
     293    i_ret = closesocket( p_sap->i_socket ); 
    294294#else 
    295     i_ret = close( p_sap->i_handle ); 
     295    i_ret = close( p_sap->i_socket ); 
    296296#endif 
    297297