Deactivate module serve-event under Windows

This commit is contained in:
jgarcia 2007-12-22 16:32:51 +00:00
parent 7fb92c431c
commit 1565fa6c30
2 changed files with 11 additions and 3 deletions

7
src/configure vendored
View file

@ -11973,9 +11973,12 @@ fi
if test "${with_serve_event}" = "yes"; then
case "${host_os}" in
mingw*|cygwin*) ;;
*)
LSP_FEATURES="(cons :wants-serve-event ${LSP_FEATURES})"
;;
esac
fi

View file

@ -516,7 +516,12 @@ if test "${with_tcp}" = "yes"; then
fi
if test "${with_serve_event}" = "yes"; then
ECL_ADD_LISP_MODULE([serve-event])
case "${host_os}" in
mingw*|cygwin*) ;;
*)
ECL_ADD_LISP_MODULE([serve-event])
;;
esac
fi
if test "${with_asdf}" = "yes"; then