Skip to content

Commit

Permalink
v8.2: Applying Xavier Leroy's patch for cmxs installation on cygwin (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
herbelin committed Jan 29, 2015
1 parent 06d66df commit 7cc6466
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions configure
Expand Up @@ -298,8 +298,11 @@ esac

# executable extension

case $ARCH in
win32)
case "$ARCH,$CYGWIN" in
win32,yes)
EXE=".exe"
DLLEXT=".so";;
win32,*)
EXE=".exe"
DLLEXT=".dll";;
*) EXE=""
Expand Down

0 comments on commit 7cc6466

Please sign in to comment.