plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 0d85a1cf7df9d185da1327da43dc62d2447ad32c
parent 2a931b7266c8a6550aca5f75b2ce3bf8655aa45b
Author: rsc <devnull@localhost>
Date:   Fri, 11 Feb 2005 16:52:08 +0000

fix libsec lib9 cycle

Diffstat:
Mbin/9l | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/bin/9l b/bin/9l @@ -97,6 +97,7 @@ then eval "have$i() { false; }" done havethread() { false; } + havesec() { false; } # now find correct order libsl="" @@ -141,6 +142,12 @@ then libsl="$libsl -lthread -l9" fi + # cycle: lib9 netcrypt uses libsec + if havesec + then + libsl="$libsl -lsec -l9" + fi + if [ "x$needdraw" = xtrue ] then if [ "x$X11" = "x" ]