commit | 0d85a1cf7df9d185da1327da43dc62d2447ad32c | [log] [tgz] |
---|---|---|
author | rsc <devnull@localhost> | Fri Feb 11 16:52:08 2005 +0000 |
committer | rsc <devnull@localhost> | Fri Feb 11 16:52:08 2005 +0000 |
tree | 28abbe9200235ba65e5572e94125a63c1e7e086f | |
parent | 2a931b7266c8a6550aca5f75b2ce3bf8655aa45b [diff] |
fix libsec lib9 cycle
diff --git a/bin/9l b/bin/9l index 7e8c90d..2d08a47 100755 --- a/bin/9l +++ b/bin/9l
@@ -97,6 +97,7 @@ eval "have$i() { false; }" done havethread() { false; } + havesec() { false; } # now find correct order libsl="" @@ -141,6 +142,12 @@ 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" ]