Changeset 5fd756e4ef899aad45adcbb91fcafad079d007d1

Show
Ignore:
Timestamp:
02/20/05 21:47:04 (4 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1108932424 +0000
git-parent:

[223ebac60de34e1d82cee9a08e9aa041bf3e694c]

git-author:
Gildas Bazin <gbazin@videolan.org> 1108932424 +0000
Message:

* src/misc/httpd.c, modules/demux/subtitle.c, modules/gui/wince/wince_rc.rc: more WinCE build fixes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/subtitle.c

    r534a812 r5fd756e  
    3737#include <vlc/input.h> 
    3838#include "vlc_video.h" 
    39  
    40  
    41 #if (!defined( WIN32 ) || defined(__MINGW32__)) 
    42 #    include <dirent.h> 
    43 #endif 
    4439 
    4540/***************************************************************************** 
  • modules/gui/wince/wince_rc.rc

    r2774b1f r5fd756e  
    2828 
    2929#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) 
    30 #ifdef _WIN32 
     30#if defined(_WIN32) && !defined(_WIN32_WCE) 
    3131LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 
    3232#pragma code_page(1252) 
     
    192192 
    193193#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) 
    194 #ifdef _WIN32 
     194#if defined(_WIN32) && !defined(_WIN32_WCE) 
    195195LANGUAGE LANG_FRENCH, SUBLANG_FRENCH 
    196196#pragma code_page(1252) 
  • src/misc/httpd.c

    rce5c749 r5fd756e  
    5757#endif 
    5858 
    59 #if defined(WIN32) 
     59#if defined(WIN32) && !defined(UNDER_CE) 
    6060static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}}; 
     61#elif defined(UNDER_CE) && defined(AF_INET6) 
     62#   undef AF_INET6 
    6163#endif 
    6264