Commit 5fd756e4 authored by Gildas Bazin's avatar Gildas Bazin

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

* src/misc/httpd.c,  modules/demux/subtitle.c, modules/gui/wince/wince_rc.rc: more WinCE build fixes.
parent 223ebac6
...@@ -37,11 +37,6 @@ ...@@ -37,11 +37,6 @@
#include <vlc/input.h> #include <vlc/input.h>
#include "vlc_video.h" #include "vlc_video.h"
#if (!defined( WIN32 ) || defined(__MINGW32__))
# include <dirent.h>
#endif
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
// English (U.S.) resources // English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32 #if defined(_WIN32) && !defined(_WIN32_WCE)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252) #pragma code_page(1252)
#endif //_WIN32 #endif //_WIN32
...@@ -191,7 +191,7 @@ END ...@@ -191,7 +191,7 @@ END
// French (France) resources // French (France) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
#ifdef _WIN32 #if defined(_WIN32) && !defined(_WIN32_WCE)
LANGUAGE LANG_FRENCH, SUBLANG_FRENCH LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
#pragma code_page(1252) #pragma code_page(1252)
#endif //_WIN32 #endif //_WIN32
......
...@@ -56,8 +56,10 @@ ...@@ -56,8 +56,10 @@
# endif # endif
#endif #endif
#if defined(WIN32) #if defined(WIN32) && !defined(UNDER_CE)
static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}}; static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}};
#elif defined(UNDER_CE) && defined(AF_INET6)
# undef AF_INET6
#endif #endif
#ifndef PF_INET #ifndef PF_INET
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment