Commit 649c9338 authored by Sam Hocevar's avatar Sam Hocevar

Minor Windows ME build fixes.

Add a --disable-wince option so that we can disable this (probably broken)
plugin's build when mingwce is detected. Also, add -lmmtimer to the libvlc
link flags because this is where timeGetTime() lies.
parent 8b586997
...@@ -305,6 +305,7 @@ case "${host_os}" in ...@@ -305,6 +305,7 @@ case "${host_os}" in
VLC_ADD_CPPFLAGS([libvlc vlc],[-Dmain(a,b)=maince(a,b)]) VLC_ADD_CPPFLAGS([libvlc vlc],[-Dmain(a,b)=maince(a,b)])
VLC_ADD_LDFLAGS([libvlc vlc],[-e WinMainCRTStartup]) VLC_ADD_LDFLAGS([libvlc vlc],[-e WinMainCRTStartup])
VLC_ADD_LIBS([libvlc access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp sap http netsync],[-lws2]) VLC_ADD_LIBS([libvlc access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp sap http netsync],[-lws2])
VLC_ADD_LIBS([libvlc],[-lmmtimer])
fi fi
;; ;;
*nto*) *nto*)
...@@ -5219,17 +5220,21 @@ AM_CONDITIONAL(ENABLE_QT4, test "$enableqt4" = "true") ...@@ -5219,17 +5220,21 @@ AM_CONDITIONAL(ENABLE_QT4, test "$enableqt4" = "true")
dnl dnl
dnl WinCE GUI module dnl WinCE GUI module
dnl dnl
if test "${SYS}" = "mingwce"; then AC_ARG_ENABLE(wince,
VLC_ADD_BUILTINS([wince]) [ --enable-wince Windows CE interface (default enabled with MinGW)])
VLC_ADD_CXXFLAGS([wince],[]) if test "${enable_wince}" != "no"; then
VLC_ADD_LIBS([wince],[-lcommctrl -lcommdlg -laygshell]) if test "${SYS}" = "mingwce"; then
dnl Gross hack VLC_ADD_BUILTINS([wince])
VLC_ADD_LIBS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o]) VLC_ADD_CXXFLAGS([wince],[])
elif test "${SYS}" = "mingw32"; then VLC_ADD_LIBS([wince],[-lcommctrl -lcommdlg -laygshell])
VLC_ADD_CXXFLAGS([wince],[]) dnl Gross hack
VLC_ADD_LIBS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32]) VLC_ADD_LIBS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
dnl Gross hack elif test "${SYS}" = "mingw32"; then
VLC_ADD_LIBS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o]) VLC_ADD_CXXFLAGS([wince],[])
VLC_ADD_LIBS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
dnl Gross hack
VLC_ADD_LIBS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
fi
fi fi
dnl dnl
......
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