From ea6956b3ae0048da9fecbe85e1a4346e2154462f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 2 Mar 2017 11:01:01 -0500 Subject: [PATCH] compiler: detect many versions of mingw64 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- src/compiler/abstract_compiler.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/abstract_compiler.nit b/src/compiler/abstract_compiler.nit index 5a0b684..11ff040 100644 --- a/src/compiler/abstract_compiler.nit +++ b/src/compiler/abstract_compiler.nit @@ -404,7 +404,7 @@ ifeq ($(uname_S),Darwin) endif # Special configuration for Windows under mingw64 -ifeq ($(uname_S),MINGW64_NT-10.0) +ifneq ($(findstring MINGW64,$(uname_S)),) # Use the pcreposix regex library LDLIBS += -lpcreposix -- 1.7.9.5