Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src librtld_db depends on libproc, so conditionalize it as well



details:   https://anonhg.NetBSD.org/src/rev/3374c039509c
branches:  trunk
changeset: 340705:3374c039509c
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Sep 25 10:08:35 2015 +0000

description:
librtld_db depends on libproc, so conditionalize it as well

diffstat:

 external/bsd/Makefile |  5 +++--
 lib/Makefile          |  4 +++-
 2 files changed, 6 insertions(+), 3 deletions(-)

diffs (43 lines):

diff -r 696db9104339 -r 3374c039509c external/bsd/Makefile
--- a/external/bsd/Makefile     Fri Sep 25 09:55:49 2015 +0000
+++ b/external/bsd/Makefile     Fri Sep 25 10:08:35 2015 +0000
@@ -1,10 +1,10 @@
-#      $NetBSD: Makefile,v 1.50 2015/09/25 08:22:02 martin Exp $
+#      $NetBSD: Makefile,v 1.51 2015/09/25 10:08:35 martin Exp $
 
 .include <bsd.own.mk>
 
 SUBDIR=        acpica am-utils bind byacc cron dhcpcd ekermit elftosb \
        fetch file flex less \
-       libarchive libevent liblzf libpcap librtld_db mdocml \
+       libarchive libevent liblzf libpcap mdocml \
        ntp openresolv tcpdump tmux top tre wpa
 
 .if (${MKATF} != "no")
@@ -37,6 +37,7 @@
 .endif
 .if (${MKDTRACE} != "no" || ${MKCTF} != "no")
 SUBDIR+= libproc
+SUBDIR+= librtld_db
 .endif
 
 SUBDIR+= blacklist pdisk dhcp nvi ppp smbfs
diff -r 696db9104339 -r 3374c039509c lib/Makefile
--- a/lib/Makefile      Fri Sep 25 09:55:49 2015 +0000
+++ b/lib/Makefile      Fri Sep 25 10:08:35 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.231 2015/09/25 07:41:53 martin Exp $
+#      $NetBSD: Makefile,v 1.232 2015/09/25 10:08:35 martin Exp $
 #      from: @(#)Makefile      5.25.1.1 (Berkeley) 5/7/91
 
 .include <bsd.own.mk>
@@ -100,7 +100,9 @@
 #==================== 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



Home | Main Index | Thread Index | Old Index