Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib Provide the minimum set of .WAIT barriers, adding explan...
details: https://anonhg.NetBSD.org/src/rev/62df6b87f4c5
branches: trunk
changeset: 581655:62df6b87f4c5
user: christos <christos%NetBSD.org@localhost>
date: Fri Jun 03 14:28:07 2005 +0000
description:
Provide the minimum set of .WAIT barriers, adding explanatory comments.
>From Patrick Welche, many thanks.
diffstat:
lib/Makefile | 33 ++++++++++++++++++++-------------
1 files changed, 20 insertions(+), 13 deletions(-)
diffs (53 lines):
diff -r d361ec828994 -r 62df6b87f4c5 lib/Makefile
--- a/lib/Makefile Fri Jun 03 13:55:04 2005 +0000
+++ b/lib/Makefile Fri Jun 03 14:28:07 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.96 2005/05/18 22:36:20 christos Exp $
+# $NetBSD: Makefile,v 1.97 2005/06/03 14:28:07 christos Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@@ -57,24 +57,31 @@
# Libraries that depend upon any listed previously
# (and those that depend upon these [and ...])
#
-SUBDIR+= .WAIT libedit # depends on libterm
-SUBDIR+= .WAIT libcdk # depends on libedit
+#==================== 1st library dependency barrier ====================
+SUBDIR+= .WAIT
+
+SUBDIR+= libedit # depends on libterm
+
.if (${MKCRYPTO} != "no")
-SUBDIR+= .WAIT libssl
-.endif
-.if (${MKKERBEROS} != "no")
-SUBDIR+= .WAIT libkrb5
-.endif
-.if (${MKKERBEROS4} != "no")
-SUBDIR+= .WAIT libkrb
+SUBDIR+= libssl # depends on libcrypto
+SUBDIR+= libssh # depends on libcrypto
.endif
-.if (${MKCRYPTO} != "no")
-SUBDIR+= .WAIT libssh
+.if (${MKKERBEROS} != "no")
+SUBDIR+= libkrb5 # depends on libcrypto and more
+.endif
+
+.if (${MKKERBEROS4} != "no")
+SUBDIR+= libkrb # depends on libdes
.endif
+#==================== 2nd library dependency barrier ====================
+SUBDIR+= .WAIT
+
+SUBDIR+= libcdk # depends on libedit
+
.if (${MKPAM} != "no")
-SUBDIR+= .WAIT libpam
+SUBDIR+= libpam # depends on libkrb5 and more
.endif
.include <bsd.subdir.mk>
Home |
Main Index |
Thread Index |
Old Index