summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2024-09-14 19:41:06 +0200
committerOliver Kiddle <opk@zsh.org>2024-09-14 19:41:06 +0200
commit5ffaffdea354b7eea3aac9ed328c1a507f08e539 (patch)
tree69c6d144c709c9a34c6551d63c83fbe094e6177e /configure.ac
parent701fad5021db0b3d07eaf90013a1ad760aaca78c (diff)
downloadzsh-5ffaffdea354b7eea3aac9ed328c1a507f08e539.tar.gz
zsh-5ffaffdea354b7eea3aac9ed328c1a507f08e539.zip
53086: change flags used for building dynamic modules on Haiku OS
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 2931f6615..474f0ccee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2638,13 +2638,13 @@ int main(int argc, char *argv[])
fi
case "$host_os" in
osf*) DLLDFLAGS="${DLLDFLAGS=-shared -expect_unresolved '*'}" ;;
- *freebsd*|*netbsd*|linux*|irix*|gnu*|interix*|dragonfly*) DLLDFLAGS="${DLLDFLAGS=-shared}" ;;
+ *freebsd*|*netbsd*|linux*|irix*|gnu*|interix*|dragonfly*|haiku*) DLLDFLAGS="${DLLDFLAGS=-shared}" ;;
sunos*) DLLDFLAGS="${DLLDFLAGS=-assert nodefinitions}" ;;
sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G $ldflags}" ;;
aix*) DLLDFLAGS="${DLLDFLAGS=-G -bexpall -lc}" ;;
solaris*|sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G}" ;;
darwin*) DLLDFLAGS="${DLLDFLAGS=-bundle -flat_namespace -undefined suppress}" ;;
- beos*|haiku*) DLLDFLAGS="${DLLDFLAGS=-nostart}" ;;
+ beos*) DLLDFLAGS="${DLLDFLAGS=-nostart}" ;;
openbsd*)
if test x$zsh_cv_sys_elf = xyes; then
DLLDFLAGS="${DLLDFLAGS=-shared -fPIC}"