From 1565fa6c30a49f44ff7008b1c810923e6ff86fa6 Mon Sep 17 00:00:00 2001 From: jgarcia Date: Sat, 22 Dec 2007 16:32:51 +0000 Subject: [PATCH] Deactivate module serve-event under Windows --- src/configure | 7 +++++-- src/configure.in | 7 ++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/configure b/src/configure index 267bb6524..af42b1bd7 100755 --- a/src/configure +++ b/src/configure @@ -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 diff --git a/src/configure.in b/src/configure.in index 938dacdf3..9c9ed2a35 100644 --- a/src/configure.in +++ b/src/configure.in @@ -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