mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-09 12:21:14 +02: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>
|
2001-09-27 Clint Adams <clint@zsh.org>
|
||||||
|
|
||||||
* 15886: Src/Modules/tcp.c: use select if poll
|
* 15886: Src/Modules/tcp.c: use select if poll
|
||||||
|
|
|
@ -17,6 +17,9 @@ The format of entries is thus:
|
||||||
Machines
|
Machines
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
Apple: MacOS X/Darwin 1.4
|
||||||
|
Should build `out-of-the-box'. Dynamic loading does not work.
|
||||||
|
|
||||||
Red Hat Inc.: Cygwin
|
Red Hat Inc.: Cygwin
|
||||||
Should build `out-of-the-box'. The compilation directory should
|
Should build `out-of-the-box'. The compilation directory should
|
||||||
be on a file system mounted as binary (the mount command shows
|
be on a file system mounted as binary (the mount command shows
|
||||||
|
|
|
@ -18,9 +18,7 @@
|
||||||
mkdir modish
|
mkdir modish
|
||||||
chgrp $EGID modish
|
chgrp $EGID modish
|
||||||
|
|
||||||
chmod g+xs modish
|
chmod 7710 modish # g+xs,u+s,+t
|
||||||
chmod u+s modish
|
|
||||||
chmod +t modish
|
|
||||||
|
|
||||||
touch unmodish
|
touch unmodish
|
||||||
chmod 000 unmodish
|
chmod 000 unmodish
|
||||||
|
|
|
@ -307,6 +307,7 @@ fi
|
||||||
if test -n "$auto_ldflags"; then
|
if test -n "$auto_ldflags"; then
|
||||||
case "${enable_zsh_debug}$host_os" in
|
case "${enable_zsh_debug}$host_os" in
|
||||||
yesaix*|yeshpux*|yesnetbsd*|yesopenbsd*) ;; # "ld -g" is not valid on these systems
|
yesaix*|yeshpux*|yesnetbsd*|yesopenbsd*) ;; # "ld -g" is not valid on these systems
|
||||||
|
darwin*) LDFLAGS=-Wl,-x ;;
|
||||||
yes*) LDFLAGS=-g ;;
|
yes*) LDFLAGS=-g ;;
|
||||||
*) LDFLAGS=-s ;;
|
*) LDFLAGS=-s ;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue