mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
fix build and test problems in Mac OS X (15882)
This commit is contained in:
parent
8c05772007
commit
a886f09894
4 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-09-27 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 15882: zshconfig.ac, Etc/MACHINES, Test/C02cond.ztst: fix
|
||||
build and test problems on MacOS X (Darwin).
|
||||
|
||||
2001-09-27 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 15886: Src/Modules/tcp.c: use select if poll
|
||||
|
|
|
@ -17,6 +17,9 @@ The format of entries is thus:
|
|||
Machines
|
||||
--------
|
||||
|
||||
Apple: MacOS X/Darwin 1.4
|
||||
Should build `out-of-the-box'. Dynamic loading does not work.
|
||||
|
||||
Red Hat Inc.: Cygwin
|
||||
Should build `out-of-the-box'. The compilation directory should
|
||||
be on a file system mounted as binary (the mount command shows
|
||||
|
|
|
@ -18,9 +18,7 @@
|
|||
mkdir modish
|
||||
chgrp $EGID modish
|
||||
|
||||
chmod g+xs modish
|
||||
chmod u+s modish
|
||||
chmod +t modish
|
||||
chmod 7710 modish # g+xs,u+s,+t
|
||||
|
||||
touch unmodish
|
||||
chmod 000 unmodish
|
||||
|
|
|
@ -307,6 +307,7 @@ fi
|
|||
if test -n "$auto_ldflags"; then
|
||||
case "${enable_zsh_debug}$host_os" in
|
||||
yesaix*|yeshpux*|yesnetbsd*|yesopenbsd*) ;; # "ld -g" is not valid on these systems
|
||||
darwin*) LDFLAGS=-Wl,-x ;;
|
||||
yes*) LDFLAGS=-g ;;
|
||||
*) LDFLAGS=-s ;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue