diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-12-22 21:53:33 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-12-22 21:53:33 +0200 |
commit | 6b7b05f011d15d8b12ee497a26d6dc69cbf445ed (patch) | |
tree | 41773b2909ef42bfe049b0b37ab5c6a95598e019 /configure.ac | |
parent | 0c31cf60d2777573de6b34f239a2c4c21bbb8bfc (diff) | |
download | egawk-6b7b05f011d15d8b12ee497a26d6dc69cbf445ed.tar.gz egawk-6b7b05f011d15d8b12ee497a26d6dc69cbf445ed.tar.bz2 egawk-6b7b05f011d15d8b12ee497a26d6dc69cbf445ed.zip |
Fix for building on Windows with msys2.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f353cea3..af3432cb 100644 --- a/configure.ac +++ b/configure.ac @@ -458,10 +458,12 @@ AH_BOTTOM([#include "custom.h"]) dnl Crude but small hack to make plug-ins work on Mac OS X dnl We should really use the libtool value for shrext_cmds, but that dnl is not available here, since we do not use libtool at the top level. +AS_VAR_IF([EXEEXT],[.exe],[GAWKLIBEXT=dll],[ case $acl_shlibext in dylib) GAWKLIBEXT=so ;; # MacOS uses .dylib for shared libraries, but libtool uses .so for modules *) GAWKLIBEXT=$acl_shlibext ;; esac +]) AC_SUBST(GAWKLIBEXT) AC_CONFIG_FILES(Makefile |