Some fixes for configuration and compilation with MSYS2.
- Added case for "*-msys" to the existing "*.mingw*" cases. - Fixed $JADE value in case the program is not installed. - Fixed RedirectIOToConsole() function for MSYS with 64-bit gcc 9.2.
This commit is contained in:
parent
cc523e4034
commit
260d1f68d4
37
bochs/configure
vendored
37
bochs/configure
vendored
@ -3371,7 +3371,7 @@ case "$target" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
NO_LT=1 # do not use libtool at all
|
NO_LT=1 # do not use libtool at all
|
||||||
if test "$with_term" = yes; then
|
if test "$with_term" = yes; then
|
||||||
# ncurses won't compile with -DWIN32
|
# ncurses won't compile with -DWIN32
|
||||||
@ -3380,7 +3380,7 @@ case "$target" in
|
|||||||
ADD_FLAGS="-DBROKEN_LINKER=1"
|
ADD_FLAGS="-DBROKEN_LINKER=1"
|
||||||
else
|
else
|
||||||
# default case
|
# default case
|
||||||
ADD_FLAGS="-DWIN32" # required for cygwin/mingw compile+win32 gui
|
ADD_FLAGS="-DWIN32" # required for cygwin/mingw/msys compile+win32 gui
|
||||||
DEFAULT_GUI=win32 # default to win32 gui
|
DEFAULT_GUI=win32 # default to win32 gui
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@ -21453,7 +21453,7 @@ fi
|
|||||||
if test "$with_rfb" != yes; then
|
if test "$with_rfb" != yes; then
|
||||||
can_compile_rfb=1
|
can_compile_rfb=1
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
|
ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
|
||||||
if test "x$ac_cv_header_winsock2_h" = xyes; then :
|
if test "x$ac_cv_header_winsock2_h" = xyes; then :
|
||||||
|
|
||||||
@ -21509,7 +21509,7 @@ fi
|
|||||||
*-pc-windows* | *-pc-winnt* | *-cygwin*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin*)
|
||||||
can_compile_vncsrv=0
|
can_compile_vncsrv=0
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
ac_fn_c_check_header_mongrel "$LINENO" "rfb/rfb.h" "ac_cv_header_rfb_rfb_h" "$ac_includes_default"
|
ac_fn_c_check_header_mongrel "$LINENO" "rfb/rfb.h" "ac_cv_header_rfb_rfb_h" "$ac_includes_default"
|
||||||
if test "x$ac_cv_header_rfb_rfb_h" = xyes; then :
|
if test "x$ac_cv_header_rfb_rfb_h" = xyes; then :
|
||||||
|
|
||||||
@ -23601,7 +23601,7 @@ if test "$networking" = yes; then
|
|||||||
ethernet_modules='null vnet'
|
ethernet_modules='null vnet'
|
||||||
can_compile_slirp=0
|
can_compile_slirp=0
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
can_compile_slirp=1
|
can_compile_slirp=1
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -liphlpapi"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -liphlpapi"
|
||||||
;;
|
;;
|
||||||
@ -23653,7 +23653,7 @@ fi
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
NETLOW_OBJS="$NETLOW_OBJS eth_win32.o"
|
NETLOW_OBJS="$NETLOW_OBJS eth_win32.o"
|
||||||
ethernet_modules="$ethernet_modules win32"
|
ethernet_modules="$ethernet_modules win32"
|
||||||
$as_echo "#define BX_NETMOD_WIN32 1" >>confdefs.h
|
$as_echo "#define BX_NETMOD_WIN32 1" >>confdefs.h
|
||||||
@ -23758,7 +23758,7 @@ if test "$bx_plugins" = 0; then
|
|||||||
*-pc-windows*)
|
*-pc-windows*)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS ws2_32.lib"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS ws2_32.lib"
|
||||||
;;
|
;;
|
||||||
*-mingw32* | *-cygwin*)
|
*-mingw32* | *-cygwin* | *-msys)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lws2_32"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lws2_32"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -23877,7 +23877,7 @@ if test "$bx_cdrom" = 1; then
|
|||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
$as_echo "yes" >&6; }
|
$as_echo "yes" >&6; }
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *.msys)
|
||||||
CDROM_OBJS="$CDROM_OBJS cdrom_win32.o"
|
CDROM_OBJS="$CDROM_OBJS cdrom_win32.o"
|
||||||
$as_echo "#define LOWLEVEL_CDROM cdrom_win32_c" >>confdefs.h
|
$as_echo "#define LOWLEVEL_CDROM cdrom_win32_c" >>confdefs.h
|
||||||
|
|
||||||
@ -24042,7 +24042,7 @@ fi
|
|||||||
$as_echo "#define BX_HAVE_SOUND_WIN 1" >>confdefs.h
|
$as_echo "#define BX_HAVE_SOUND_WIN 1" >>confdefs.h
|
||||||
|
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
SOUNDLOW_OBJS='soundwin.o'
|
SOUNDLOW_OBJS='soundwin.o'
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
||||||
soundlow_drivers="win"
|
soundlow_drivers="win"
|
||||||
@ -24160,7 +24160,7 @@ $as_echo "yes" >&6; }
|
|||||||
if test "$gameport_present" = 0; then
|
if test "$gameport_present" = 0; then
|
||||||
GAME_OBJS='gameport.o'
|
GAME_OBJS='gameport.o'
|
||||||
case $target in
|
case $target in
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -24304,6 +24304,7 @@ fi
|
|||||||
|
|
||||||
test -n "$JADE" && break
|
test -n "$JADE" && break
|
||||||
done
|
done
|
||||||
|
test -n "$JADE" || JADE="not_found"
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build docbook documentation" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build docbook documentation" >&5
|
||||||
$as_echo_n "checking whether to build docbook documentation... " >&6; }
|
$as_echo_n "checking whether to build docbook documentation... " >&6; }
|
||||||
@ -24713,7 +24714,7 @@ if test "$with_sdl" = yes; then
|
|||||||
RC_CMD="rc /fo"
|
RC_CMD="rc /fo"
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
@ -24749,7 +24750,7 @@ if test "$with_sdl2" = yes; then
|
|||||||
RC_CMD="rc /fo"
|
RC_CMD="rc /fo"
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
@ -24864,7 +24865,7 @@ if test "$with_win32" = yes; then
|
|||||||
fi
|
fi
|
||||||
GUI_LINK_OPTS="$GUI_LINK_OPTS \$(GUI_LINK_OPTS_WIN32_VCPP)"
|
GUI_LINK_OPTS="$GUI_LINK_OPTS \$(GUI_LINK_OPTS_WIN32_VCPP)"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
if test "$with_wx" != yes; then
|
if test "$with_wx" != yes; then
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
@ -24956,7 +24957,7 @@ if test "$with_wx" = yes; then
|
|||||||
# using debugger with readline is failing due to thread/signal handler
|
# using debugger with readline is failing due to thread/signal handler
|
||||||
# problems.
|
# problems.
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS wxbochs_resources.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS wxbochs_resources.o"
|
||||||
GUI_LINK_OPTS_WX="$GUI_LINK_OPTS_WX"
|
GUI_LINK_OPTS_WX="$GUI_LINK_OPTS_WX"
|
||||||
;;
|
;;
|
||||||
@ -25217,7 +25218,7 @@ case "$target" in
|
|||||||
$as_echo "#define BX_HAVE_SELECT 1" >>confdefs.h
|
$as_echo "#define BX_HAVE_SELECT 1" >>confdefs.h
|
||||||
|
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
BXIMAGE_LINK_OPTS="-luser32"
|
BXIMAGE_LINK_OPTS="-luser32"
|
||||||
if test "$networking" = yes; then
|
if test "$networking" = yes; then
|
||||||
OPTIONAL_TARGET="$OPTIONAL_TARGET bxhub niclist"
|
OPTIONAL_TARGET="$OPTIONAL_TARGET bxhub niclist"
|
||||||
@ -25310,7 +25311,7 @@ case $target in
|
|||||||
DIALOG_OBJS="win32dialog.o win32paramdlg.o scrollwin.o"
|
DIALOG_OBJS="win32dialog.o win32paramdlg.o scrollwin.o"
|
||||||
EXPORT_DYNAMIC=""
|
EXPORT_DYNAMIC=""
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw*)
|
*-cygwin* | *-mingw* | *-msys)
|
||||||
if test "$bx_plugins" = 1; then
|
if test "$bx_plugins" = 1; then
|
||||||
# set variables for building DLL plugins
|
# set variables for building DLL plugins
|
||||||
PRIMARY_TARGET=".win32_dll_plugin_target"
|
PRIMARY_TARGET=".win32_dll_plugin_target"
|
||||||
@ -25709,7 +25710,7 @@ if test "$with_rfb" = yes; then
|
|||||||
RFB_LIBS="$RFB_LIBS ws2_32.lib"
|
RFB_LIBS="$RFB_LIBS ws2_32.lib"
|
||||||
have_socket=yes
|
have_socket=yes
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
RFB_LIBS="$RFB_LIBS -lws2_32"
|
RFB_LIBS="$RFB_LIBS -lws2_32"
|
||||||
have_socket=yes
|
have_socket=yes
|
||||||
;;
|
;;
|
||||||
@ -26105,7 +26106,7 @@ fi
|
|||||||
# since some features need the pthread library, check that it was found.
|
# since some features need the pthread library, check that it was found.
|
||||||
# But on win32 platforms, the pthread library is not needed.
|
# But on win32 platforms, the pthread library is not needed.
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
# pthread not needed for win32 platform
|
# pthread not needed for win32 platform
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
@ -54,7 +54,7 @@ case "$target" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
NO_LT=1 # do not use libtool at all
|
NO_LT=1 # do not use libtool at all
|
||||||
if test "$with_term" = yes; then
|
if test "$with_term" = yes; then
|
||||||
# ncurses won't compile with -DWIN32
|
# ncurses won't compile with -DWIN32
|
||||||
@ -63,7 +63,7 @@ case "$target" in
|
|||||||
ADD_FLAGS="-DBROKEN_LINKER=1"
|
ADD_FLAGS="-DBROKEN_LINKER=1"
|
||||||
else
|
else
|
||||||
# default case
|
# default case
|
||||||
ADD_FLAGS="-DWIN32" # required for cygwin/mingw compile+win32 gui
|
ADD_FLAGS="-DWIN32" # required for cygwin/mingw/msys compile+win32 gui
|
||||||
DEFAULT_GUI=win32 # default to win32 gui
|
DEFAULT_GUI=win32 # default to win32 gui
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@ -352,7 +352,7 @@ if test "$with_all_libs" = yes; then
|
|||||||
if test "$with_rfb" != yes; then
|
if test "$with_rfb" != yes; then
|
||||||
can_compile_rfb=1
|
can_compile_rfb=1
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
AC_CHECK_HEADER([winsock2.h], [], [ can_compile_rfb=0 ])
|
AC_CHECK_HEADER([winsock2.h], [], [ can_compile_rfb=0 ])
|
||||||
AC_CHECK_HEADER([process.h], [], [ can_compile_rfb=0 ])
|
AC_CHECK_HEADER([process.h], [], [ can_compile_rfb=0 ])
|
||||||
;;
|
;;
|
||||||
@ -373,7 +373,7 @@ if test "$with_all_libs" = yes; then
|
|||||||
*-pc-windows* | *-pc-winnt* | *-cygwin*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin*)
|
||||||
can_compile_vncsrv=0
|
can_compile_vncsrv=0
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
AC_CHECK_HEADER([rfb/rfb.h], [], [ can_compile_vncsrv=0 ])
|
AC_CHECK_HEADER([rfb/rfb.h], [], [ can_compile_vncsrv=0 ])
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
@ -1690,7 +1690,7 @@ if test "$networking" = yes; then
|
|||||||
ethernet_modules='null vnet'
|
ethernet_modules='null vnet'
|
||||||
can_compile_slirp=0
|
can_compile_slirp=0
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
can_compile_slirp=1
|
can_compile_slirp=1
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -liphlpapi"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -liphlpapi"
|
||||||
;;
|
;;
|
||||||
@ -1723,7 +1723,7 @@ if test "$networking" = yes; then
|
|||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
NETLOW_OBJS="$NETLOW_OBJS eth_win32.o"
|
NETLOW_OBJS="$NETLOW_OBJS eth_win32.o"
|
||||||
ethernet_modules="$ethernet_modules win32"
|
ethernet_modules="$ethernet_modules win32"
|
||||||
AC_DEFINE(BX_NETMOD_WIN32, 1)
|
AC_DEFINE(BX_NETMOD_WIN32, 1)
|
||||||
@ -1799,7 +1799,7 @@ if test "$bx_plugins" = 0; then
|
|||||||
*-pc-windows*)
|
*-pc-windows*)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS ws2_32.lib"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS ws2_32.lib"
|
||||||
;;
|
;;
|
||||||
*-mingw32* | *-cygwin*)
|
*-mingw32* | *-cygwin* | *-msys)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lws2_32"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lws2_32"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -1883,7 +1883,7 @@ CDROM_OBJS='cdrom.o'
|
|||||||
if test "$bx_cdrom" = 1; then
|
if test "$bx_cdrom" = 1; then
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *.msys)
|
||||||
CDROM_OBJS="$CDROM_OBJS cdrom_win32.o"
|
CDROM_OBJS="$CDROM_OBJS cdrom_win32.o"
|
||||||
AC_DEFINE(LOWLEVEL_CDROM, cdrom_win32_c)
|
AC_DEFINE(LOWLEVEL_CDROM, cdrom_win32_c)
|
||||||
AC_DEFINE(BX_SUPPORT_CDROM, 1)
|
AC_DEFINE(BX_SUPPORT_CDROM, 1)
|
||||||
@ -2006,7 +2006,7 @@ if test "$soundcard_present" = 1; then
|
|||||||
soundlow_default="win"
|
soundlow_default="win"
|
||||||
AC_DEFINE(BX_HAVE_SOUND_WIN, 1)
|
AC_DEFINE(BX_HAVE_SOUND_WIN, 1)
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
SOUNDLOW_OBJS='soundwin.o'
|
SOUNDLOW_OBJS='soundwin.o'
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
||||||
soundlow_drivers="win"
|
soundlow_drivers="win"
|
||||||
@ -2096,7 +2096,7 @@ AC_ARG_ENABLE(gameport,
|
|||||||
if test "$gameport_present" = 0; then
|
if test "$gameport_present" = 0; then
|
||||||
GAME_OBJS='gameport.o'
|
GAME_OBJS='gameport.o'
|
||||||
case $target in
|
case $target in
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -lwinmm"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -2140,7 +2140,7 @@ AC_SUBST(BUSM_OBJS)
|
|||||||
|
|
||||||
|
|
||||||
AC_PATH_PROG(DOCBOOK2HTML, docbook2html, not_found)
|
AC_PATH_PROG(DOCBOOK2HTML, docbook2html, not_found)
|
||||||
AC_CHECK_PROGS([JADE], [jade openjade])
|
AC_CHECK_PROGS([JADE], [jade openjade], not_found)
|
||||||
AC_MSG_CHECKING(whether to build docbook documentation)
|
AC_MSG_CHECKING(whether to build docbook documentation)
|
||||||
build_docbook=0
|
build_docbook=0
|
||||||
AC_ARG_ENABLE(docbook,
|
AC_ARG_ENABLE(docbook,
|
||||||
@ -2444,7 +2444,7 @@ if test "$with_sdl" = yes; then
|
|||||||
RC_CMD="rc /fo"
|
RC_CMD="rc /fo"
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
@ -2479,7 +2479,7 @@ if test "$with_sdl2" = yes; then
|
|||||||
RC_CMD="rc /fo"
|
RC_CMD="rc /fo"
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
;;
|
;;
|
||||||
@ -2548,7 +2548,7 @@ if test "$with_win32" = yes; then
|
|||||||
fi
|
fi
|
||||||
GUI_LINK_OPTS="$GUI_LINK_OPTS \$(GUI_LINK_OPTS_WIN32_VCPP)"
|
GUI_LINK_OPTS="$GUI_LINK_OPTS \$(GUI_LINK_OPTS_WIN32_VCPP)"
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw32*)
|
*-cygwin* | *-mingw32* | *-msys)
|
||||||
if test "$with_wx" != yes; then
|
if test "$with_wx" != yes; then
|
||||||
RC_CMD="windres -I. -o "
|
RC_CMD="windres -I. -o "
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS win32res.o"
|
||||||
@ -2632,7 +2632,7 @@ if test "$with_wx" = yes; then
|
|||||||
# using debugger with readline is failing due to thread/signal handler
|
# using debugger with readline is failing due to thread/signal handler
|
||||||
# problems.
|
# problems.
|
||||||
case $target in
|
case $target in
|
||||||
*-pc-windows* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
EXTRA_BX_OBJS="$EXTRA_BX_OBJS wxbochs_resources.o"
|
EXTRA_BX_OBJS="$EXTRA_BX_OBJS wxbochs_resources.o"
|
||||||
GUI_LINK_OPTS_WX="$GUI_LINK_OPTS_WX"
|
GUI_LINK_OPTS_WX="$GUI_LINK_OPTS_WX"
|
||||||
;;
|
;;
|
||||||
@ -2825,7 +2825,7 @@ case "$target" in
|
|||||||
fi
|
fi
|
||||||
AC_DEFINE(BX_HAVE_SELECT, 1)
|
AC_DEFINE(BX_HAVE_SELECT, 1)
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
BXIMAGE_LINK_OPTS="-luser32"
|
BXIMAGE_LINK_OPTS="-luser32"
|
||||||
if test "$networking" = yes; then
|
if test "$networking" = yes; then
|
||||||
OPTIONAL_TARGET="$OPTIONAL_TARGET bxhub niclist"
|
OPTIONAL_TARGET="$OPTIONAL_TARGET bxhub niclist"
|
||||||
@ -2914,7 +2914,7 @@ case $target in
|
|||||||
DIALOG_OBJS="win32dialog.o win32paramdlg.o scrollwin.o"
|
DIALOG_OBJS="win32dialog.o win32paramdlg.o scrollwin.o"
|
||||||
EXPORT_DYNAMIC=""
|
EXPORT_DYNAMIC=""
|
||||||
;;
|
;;
|
||||||
*-cygwin* | *-mingw*)
|
*-cygwin* | *-mingw* | *-msys)
|
||||||
if test "$bx_plugins" = 1; then
|
if test "$bx_plugins" = 1; then
|
||||||
# set variables for building DLL plugins
|
# set variables for building DLL plugins
|
||||||
PRIMARY_TARGET=".win32_dll_plugin_target"
|
PRIMARY_TARGET=".win32_dll_plugin_target"
|
||||||
@ -2968,7 +2968,7 @@ if test "$with_rfb" = yes; then
|
|||||||
RFB_LIBS="$RFB_LIBS ws2_32.lib"
|
RFB_LIBS="$RFB_LIBS ws2_32.lib"
|
||||||
have_socket=yes
|
have_socket=yes
|
||||||
;;
|
;;
|
||||||
*-mingw32*)
|
*-mingw32* | *-msys)
|
||||||
RFB_LIBS="$RFB_LIBS -lws2_32"
|
RFB_LIBS="$RFB_LIBS -lws2_32"
|
||||||
have_socket=yes
|
have_socket=yes
|
||||||
;;
|
;;
|
||||||
@ -3197,7 +3197,7 @@ ACX_PTHREAD([
|
|||||||
# since some features need the pthread library, check that it was found.
|
# since some features need the pthread library, check that it was found.
|
||||||
# But on win32 platforms, the pthread library is not needed.
|
# But on win32 platforms, the pthread library is not needed.
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32*)
|
*-pc-windows* | *-pc-winnt* | *-cygwin* | *-mingw32* | *-msys)
|
||||||
# pthread not needed for win32 platform
|
# pthread not needed for win32 platform
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
@ -458,7 +458,7 @@ int split_string_into_argv(char *string, int *argc_out, char **argv, int max_arg
|
|||||||
int RedirectIOToConsole()
|
int RedirectIOToConsole()
|
||||||
{
|
{
|
||||||
int hConHandle;
|
int hConHandle;
|
||||||
long lStdHandle;
|
Bit64s lStdHandle;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
// allocate a console for this app
|
// allocate a console for this app
|
||||||
FreeConsole();
|
FreeConsole();
|
||||||
@ -467,20 +467,20 @@ int RedirectIOToConsole()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// redirect unbuffered STDOUT to the console
|
// redirect unbuffered STDOUT to the console
|
||||||
lStdHandle = (long)GetStdHandle(STD_OUTPUT_HANDLE);
|
lStdHandle = (Bit64s)GetStdHandle(STD_OUTPUT_HANDLE);
|
||||||
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
|
hConHandle = _open_osfhandle((long)lStdHandle, _O_TEXT);
|
||||||
fp = _fdopen(hConHandle, "w");
|
fp = _fdopen(hConHandle, "w");
|
||||||
*stdout = *fp;
|
*stdout = *fp;
|
||||||
setvbuf(stdout, NULL, _IONBF, 0);
|
setvbuf(stdout, NULL, _IONBF, 0);
|
||||||
// redirect unbuffered STDIN to the console
|
// redirect unbuffered STDIN to the console
|
||||||
lStdHandle = (long)GetStdHandle(STD_INPUT_HANDLE);
|
lStdHandle = (Bit64s)GetStdHandle(STD_INPUT_HANDLE);
|
||||||
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
|
hConHandle = _open_osfhandle((long)lStdHandle, _O_TEXT);
|
||||||
fp = _fdopen(hConHandle, "r");
|
fp = _fdopen(hConHandle, "r");
|
||||||
*stdin = *fp;
|
*stdin = *fp;
|
||||||
setvbuf(stdin, NULL, _IONBF, 0);
|
setvbuf(stdin, NULL, _IONBF, 0);
|
||||||
// redirect unbuffered STDERR to the console
|
// redirect unbuffered STDERR to the console
|
||||||
lStdHandle = (long)GetStdHandle(STD_ERROR_HANDLE);
|
lStdHandle = (Bit64s)GetStdHandle(STD_ERROR_HANDLE);
|
||||||
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
|
hConHandle = _open_osfhandle((long)lStdHandle, _O_TEXT);
|
||||||
fp = _fdopen(hConHandle, "w");
|
fp = _fdopen(hConHandle, "w");
|
||||||
*stderr = *fp;
|
*stderr = *fp;
|
||||||
setvbuf(stderr, NULL, _IONBF, 0);
|
setvbuf(stderr, NULL, _IONBF, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user