diff options
author | Haru <haru@dotalux.com> | 2013-12-10 20:47:51 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-12-17 01:02:19 +0100 |
commit | efe4174e59dc462130fde872365e891a7c73654a (patch) | |
tree | 2d706c263f57c92db3b8137c5fde6a0c78912263 /configure | |
parent | 4d13474b034f95f5be114aa5d3ef6ee59c8d8595 (diff) | |
download | hercules-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')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in 0219c4d. +# From configure.in 4d13474. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69. # @@ -6473,6 +6473,9 @@ CYGWIN*) fd_setsize="done" DLLEXT=".dll" ;; +Darwin*) + DLLEXT=".dylib" + ;; esac |