From 7b24c5363ec400bc9e59b79f4b2d8b07a0208c18 Mon Sep 17 00:00:00 2001 From: Christian Cornelssen Date: Mon, 21 May 2018 09:08:19 +0200 Subject: configure: Select correct SOEXT, EXEEXT, PIC_FLAGS for Cygwin --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 9b4891c4e..14df9f842 100755 --- a/configure +++ b/configure @@ -250,7 +250,8 @@ fi # Define default file extensions for Windows or Linux-like systems and # use -fPIC or not. case "$build" in - *mingw*) SOEXT=".dll"; EXEEXT=".exe"; PIC_FLAGS="";; + *mingw* | *cygwin*) + SOEXT=".dll"; EXEEXT=".exe"; PIC_FLAGS="";; *darwin*) SOEXT=".dylib"; EXEEXT=""; PIC_FLAGS="";; *) SOEXT=".so"; EXEEXT=""; PIC_FLAGS="-fPIC";; esac -- cgit v1.2.3