Module Name: src
Committed By: christos
Date: Fri Sep 25 11:39:08 UTC 2015
Modified Files:
src/lib: Makefile
Log Message:
Restore previous: only build libproc and librtld_db for dtrace since many
archs are not supported.
To generate a diff of this commit:
cvs rdiff -u -r1.233 -r1.234 src/lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/Makefile
diff -u src/lib/Makefile:1.233 src/lib/Makefile:1.234
--- src/lib/Makefile:1.233 Fri Sep 25 07:35:05 2015
+++ src/lib/Makefile Fri Sep 25 07:39:08 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.233 2015/09/25 11:35:05 christos Exp $
+# $NetBSD: Makefile,v 1.234 2015/09/25 11:39:08 christos Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@@ -100,7 +100,9 @@ SUBDIR+= ../external/lgpl3/mpc/lib/libmp
#==================== 1st library dependency barrier ====================
SUBDIR+= .WAIT
+.if ${MKDTRACE} != "no" || ${MKCTF} != "no"
SUBDIR+= ../external/bsd/librtld_db/lib # depends on libutil
+.endif
.if ${MKDTRACE} != "no" || ${MKCTF} != "no"
SUBDIR+= ../external/cddl/osnet/lib/libctf
@@ -205,8 +207,9 @@ SUBDIR+= ../crypto/external/bsd/netpgp/l
.endif
SUBDIR+= ../external/bsd/libevent/lib # depends on libcrypto
-SUBDIR+= ../external/bsd/libproc/lib # depends on libstdc++,
- # optionally libctf
+.if ${MKDTRACE} != "no" && ${MKCTF} != "no"
+SUBDIR+= ../external/bsd/libproc/lib # depends on libstdc++, libctf
+.endif
SUBDIR+= ../external/bsd/fetch/lib # depends on libssl
.if (${MKLDAP} != "no")