From 33c0dde68f514ae7b637cbf4e12da9b0f7c1e41e Mon Sep 17 00:00:00 2001 From: h_vogt Date: Sun, 13 Dec 2015 10:46:46 +0100 Subject: [PATCH] configure.ac, extend `case $host_os' to support msys2 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index a216218e8..e6c2f0e34 100644 --- a/configure.ac +++ b/configure.ac @@ -310,7 +310,7 @@ if test "x$with_ngshared" != x && test "x$with_ngshared" != xno ; then has_shared_module=true AC_DEFINE([SHARED_MODULE], [1], [shared ngspice module]) case $host_os in - *mingw* ) + *mingw* | *msys* ) has_shwin=true has_no_help=true ;; @@ -346,7 +346,7 @@ elif test "x$with_tcl" != x && test "x$with_tcl" != xno ; then has_tcl_module=true AC_DEFINE([TCL_MODULE], [1], [Tcl Module]) case $host_os in - *mingw* ) + *mingw* | *msys* ) has_tclwin=true has_no_help=true AC_DEFINE([HAS_TCLWIN], [1], [Tcl Windows]) @@ -878,7 +878,7 @@ if test "x$enable_xspice" = xyes; then AC_MSG_RESULT([X-Spice features included]) AC_DEFINE([XSPICE], [1], [The xspice enhancements]) case $host_os in - *mingw* ) + *mingw* | *msys* ) AC_DEFINE([IPC_DEBUG_VIA_STDIO], [1], [Client-Server only via stdio.]) XSPICEDLLIBS="" ;;