mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-28 04:05:12 +01:00
53134: use -undefined dynamic_lookup on recent macOS
This commit is contained in:
parent
ec57ac0940
commit
383526da42
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2024-09-02 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* 53134: configure.ac: use -undefined dynamic_lookup on recent macOS
|
||||||
|
|
||||||
2024-09-21 Bart Schaefer <schaefer@toltec-ubuntu>
|
2024-09-21 Bart Schaefer <schaefer@toltec-ubuntu>
|
||||||
|
|
||||||
* 53103: Test/A08time.ztst: fix spurious test failure on Solaris
|
* 53103: Test/A08time.ztst: fix spurious test failure on Solaris
|
||||||
|
|
|
@ -2637,7 +2637,9 @@ int main(int argc, char *argv[])
|
||||||
sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G $ldflags}" ;;
|
sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G $ldflags}" ;;
|
||||||
aix*) DLLDFLAGS="${DLLDFLAGS=-G -bexpall -lc}" ;;
|
aix*) DLLDFLAGS="${DLLDFLAGS=-G -bexpall -lc}" ;;
|
||||||
solaris*|sysv4*|esix*) DLLDFLAGS="${DLLDFLAGS=-G}" ;;
|
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}" ;;
|
beos*) DLLDFLAGS="${DLLDFLAGS=-nostart}" ;;
|
||||||
openbsd*)
|
openbsd*)
|
||||||
if test x$zsh_cv_sys_elf = xyes; then
|
if test x$zsh_cv_sys_elf = xyes; then
|
||||||
|
|
Loading…
Reference in a new issue