Skip to content

Commit

Permalink
53134: use -undefined dynamic_lookup on recent macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun-T committed Oct 2, 2024
1 parent ec57ac0 commit 383526d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-09-02 Jun-ichi Takimoto <[email protected]>

* 53134: configure.ac: use -undefined dynamic_lookup on recent macOS

2024-09-21 Bart Schaefer <schaefer@toltec-ubuntu>

* 53103: Test/A08time.ztst: fix spurious test failure on Solaris
Expand Down
4 changes: 3 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2637,7 +2637,9 @@ int main(int argc, char *argv[])
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}" ;;
darwin[[0-9]].*|darwin1?.*|darwin2[01].*)
DLLDFLAGS="${DLLDFLAGS=-bundle -flat_namespace -undefined suppress}" ;;
darwin*) DLLDFLAGS="${DLLDFLAGS=-bundle -flat_namespace -undefined dynamic_lookup}" ;;
beos*) DLLDFLAGS="${DLLDFLAGS=-nostart}" ;;
openbsd*)
if test x$zsh_cv_sys_elf = xyes; then
Expand Down

0 comments on commit 383526d

Please sign in to comment.