1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-25 17:41:19 +02:00

11276: fix build on OpenBSD.

This commit is contained in:
Tanaka Akira 2000-05-09 11:54:43 +00:00
parent 8c6a5af791
commit a65e197d2a
3 changed files with 1083 additions and 411 deletions

View file

@ -1,3 +1,7 @@
2000-05-09 Tanaka Akira <akr@zsh.org>
* 11276: fix build on OpenBSD.
2000-05-09 Sven Wischnowsky <wischnow@zsh.org>
* 11274: Completion/Builtins/_zstyle, Completion/Core/_main_complete,

File diff suppressed because it is too large Load diff

View file

@ -316,7 +316,7 @@ if test -n "$auto_cflags"; then
fi
if test -n "$auto_ldflags"; then
case "${enable_zsh_debug}$host_os" in
yesaix*|yeshpux*|yesnetbsd*) ;; # "ld -g" is not valid on these systems
yesaix*|yeshpux*|yesnetbsd*|yesopenbsd*) ;; # "ld -g" is not valid on these systems
yes*) LDFLAGS=-g ;;
*) LDFLAGS=-s ;;
esac