diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a45e5c4e..f3cf6777 100644 --- a/configure.ac +++ b/configure.ac @@ -357,9 +357,13 @@ AC_CONFIG_HEADERS([config.h:configh.in]) 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. case $acl_shlibext in -dylib) acl_shlibext=so ;; # force it +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 awklib/Makefile |