Configure fixes for MinGW
As for Cygwin, define FD_SETSIZE for uses of select() to be correct. Link with libpthread. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
53830281b4
commit
cc1d8fa8a4
|
@ -420,7 +420,7 @@ case $host_os in
|
||||||
darwin*)
|
darwin*)
|
||||||
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
|
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
|
||||||
;;
|
;;
|
||||||
cygwin*)
|
cygwin*|mingw*)
|
||||||
CFLAGS="$CFLAGS -DFD_SETSIZE=256"
|
CFLAGS="$CFLAGS -DFD_SETSIZE=256"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -1904,7 +1904,7 @@ if test "x$XWIN" = xyes; then
|
||||||
XWIN_SERVER_NAME=Xming
|
XWIN_SERVER_NAME=Xming
|
||||||
AC_DEFINE(RELOCATE_PROJECTROOT,1,[Make PROJECT_ROOT relative to the xserver location])
|
AC_DEFINE(RELOCATE_PROJECTROOT,1,[Make PROJECT_ROOT relative to the xserver location])
|
||||||
AC_DEFINE(HAS_WINSOCK,1,[Use Windows sockets])
|
AC_DEFINE(HAS_WINSOCK,1,[Use Windows sockets])
|
||||||
XWIN_SYS_LIBS=-lws2_32
|
XWIN_SYS_LIBS="-lpthread -lws2_32"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue