Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5c834978
Commit
5c834978
authored
Sep 09, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac, src/extras/libc.c, modules/misc/network/ipv4.c: fixed the WinCE build.
parent
5c0dd04b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
12 deletions
+31
-12
configure.ac
configure.ac
+2
-2
modules/misc/network/ipv4.c
modules/misc/network/ipv4.c
+23
-8
src/extras/libc.c
src/extras/libc.c
+6
-2
No files found.
configure.ac
View file @
5c834978
...
...
@@ -171,7 +171,6 @@ case "${target_os}" in
VLC_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
VLC_ADD_LDFLAGS([vcdx cddax],[-lwinmm])
VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard stream_out_rtp vod_rtsp telnet netsync],[-lws2_32])
VLC_ADD_LDFLAGS([ipv4],[-liphlpapi])
fi
if test "${SYS}" = "mingwce"; then
# add ws2 for closesocket, select, recv
...
...
@@ -179,7 +178,6 @@ case "${target_os}" in
VLC_ADD_CPPFLAGS([vlc],[-Dmain(a,b)=maince(a,b)])
VLC_ADD_LDFLAGS([vlc],[-lws2 -e WinMainCRTStartup])
VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap http netsync],[-lws2])
VLC_ADD_LDFLAGS([ipv4],[-liphlpapi])
fi
;;
*nto*)
...
...
@@ -241,8 +239,10 @@ XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
dnl
dnl Iconv stuff
dnl
if test "${SYS}" != "mingwce"; then
AS_IF([test "$am_cv_func_iconv" != "yes"],
[AC_MSG_ERROR([libiconv is needed for VLC to work properly])])
fi
VLC_ADD_CFLAGS([vlc],[${INCICONV}])
VLC_ADD_LDFLAGS([vlc],[${LIBICONV}])
...
...
modules/misc/network/ipv4.c
View file @
5c834978
...
...
@@ -344,21 +344,36 @@ static int OpenUDP( vlc_object_t * p_this )
#if defined (WIN32) || defined (UNDER_CE)
else
{
DWORD
WINAPI
(
*
OurGetBestInterface
)(
IPAddr
,
PDWORD
);
DWORD
WINAPI
(
*
OurGetIpAddrTable
)(
PMIB_IPADDRTABLE
,
PULONG
,
BOOL
);
HINSTANCE
hiphlpapi
=
LoadLibrary
(
_T
(
"Iphlpapi.dll"
));
DWORD
i_index
;
if
(
GetBestInterface
(
sock
.
sin_addr
.
s_addr
,
&
i_index
)
==
NO_ERROR
)
if
(
hiphlpapi
)
{
OurGetBestInterface
=
(
void
*
)
GetProcAddress
(
hiphlpapi
,
_T
(
"GetBestInterface"
)
);
OurGetIpAddrTable
=
(
void
*
)
GetProcAddress
(
hiphlpapi
,
_T
(
"GetIpAddrTable"
)
);
}
if
(
hiphlpapi
&&
OurGetBestInterface
&&
OurGetIpAddrTable
&&
OurGetBestInterface
(
sock
.
sin_addr
.
s_addr
,
&
i_index
)
==
NO_ERROR
)
{
PMIB_IPADDRTABLE
p_table
;
DWORD
i
=
0
;
msg_Dbg
(
p_this
,
"Winsock best interface is %lu"
,
(
unsigned
long
)
i_index
);
GetIpAddrTable
(
NULL
,
&
i
,
0
);
Our
GetIpAddrTable
(
NULL
,
&
i
,
0
);
p_table
=
(
PMIB_IPADDRTABLE
)
malloc
(
i
);
if
(
p_table
!=
NULL
)
{
if
(
GetIpAddrTable
(
p_table
,
&
i
,
0
)
==
NO_ERROR
)
if
(
OurGetIpAddrTable
(
p_table
,
&
i
,
0
)
==
NO_ERROR
)
{
for
(
i
=
0
;
i
<
p_table
->
dwNumEntries
;
i
--
)
{
...
...
@@ -371,13 +386,13 @@ static int OpenUDP( vlc_object_t * p_this )
}
}
}
else
msg_Warn
(
p_this
,
"GetIpAddrTable failed"
);
else
msg_Warn
(
p_this
,
"GetIpAddrTable failed"
);
free
(
p_table
);
}
}
else
msg_Dbg
(
p_this
,
"GetBestInterface failed"
);
else
msg_Dbg
(
p_this
,
"GetBestInterface failed"
);
if
(
hiphlpapi
)
FreeLibrary
(
hiphlpapi
);
}
#endif
if
(
psz_if_addr
!=
NULL
)
free
(
psz_if_addr
);
...
...
src/extras/libc.c
View file @
5c834978
...
...
@@ -55,6 +55,10 @@
# include <windows.h>
#endif
#ifdef UNDER_CE
# define strcoll strcmp
#endif
/*****************************************************************************
* getenv: just in case, but it should never be called
*****************************************************************************/
...
...
@@ -343,7 +347,7 @@ int64_t vlc_atoll( const char *nptr )
* vlc_*dir_wrapper: wrapper under Windows to return the list of drive letters
* when called with an empty argument or just '\'
*****************************************************************************/
#if defined(WIN32)
||
defined(UNDER_CE)
#if defined(WIN32)
&& !
defined(UNDER_CE)
typedef
struct
vlc_DIR
{
DIR
*
p_real_dir
;
...
...
@@ -949,7 +953,7 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
}
}
#elif defined( WIN32 )
#elif defined( WIN32 )
&& !defined( UNDER_CE )
SECURITY_ATTRIBUTES
saAttr
;
PROCESS_INFORMATION
piProcInfo
;
STARTUPINFO
siStartInfo
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment