summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2013-12-10 20:47:51 +0100
committerHaru <haru@dotalux.com>2013-12-17 01:02:19 +0100
commitefe4174e59dc462130fde872365e891a7c73654a (patch)
tree2d706c263f57c92db3b8137c5fde6a0c78912263 /configure.in
parent4d13474b034f95f5be114aa5d3ef6ee59c8d8595 (diff)
downloadhercules-efe4174e59dc462130fde872365e891a7c73654a.tar.gz
hercules-efe4174e59dc462130fde872365e891a7c73654a.tar.bz2
hercules-efe4174e59dc462130fde872365e891a7c73654a.tar.xz
hercules-efe4174e59dc462130fde872365e891a7c73654a.zip
Changed plugin extension from .so to .dylib on OS X
- No functional changes. That's just the correct OS X file extension for dynamic libs. Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 98c493a03..7db4ceda6 100644
--- a/configure.in
+++ b/configure.in
@@ -1123,6 +1123,9 @@ CYGWIN*)
fd_setsize="done"
DLLEXT=".dll"
;;
+Darwin*)
+ DLLEXT=".dylib"
+ ;;
esac
AC_SUBST([DLLEXT])