summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ngctl
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2006-11-27 16:55:14 +0000
committerru <ru@FreeBSD.org>2006-11-27 16:55:14 +0000
commiteeb150355b9cdf227096ba44cee01fb35c24b109 (patch)
tree410a16f7a613ae731d728387c3181ea1708d0e9c /usr.sbin/ngctl
parent6c1cc19152b33b40556371e89b993ae0faf46414 (diff)
downloadFreeBSD-src-eeb150355b9cdf227096ba44cee01fb35c24b109.zip
FreeBSD-src-eeb150355b9cdf227096ba44cee01fb35c24b109.tar.gz
Push the detection of threading libs support down to ngctl/Makefile
as the latter can be built without threading (with the loss of line editing functionality). Pointed by: glebius
Diffstat (limited to 'usr.sbin/ngctl')
-rw-r--r--usr.sbin/ngctl/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.sbin/ngctl/Makefile b/usr.sbin/ngctl/Makefile
index 2d24341..bd93699 100644
--- a/usr.sbin/ngctl/Makefile
+++ b/usr.sbin/ngctl/Makefile
@@ -1,6 +1,8 @@
# $FreeBSD$
# $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $
+.include <bsd.own.mk>
+
PROG= ngctl
MAN= ngctl.8
SRCS= main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
@@ -11,6 +13,11 @@ WARNS?= 3
NGCTL_NO_LIBEDIT=
.endif
+.if ${MK_LIBTHR} == "no" && \
+ (${MACHINE_ARCH} == "sparc64" || ${MK_LIBPTHREAD} == "no")
+NGCTL_NO_LIBEDIT=
+.endif
+
DPADD= ${LIBNETGRAPH}
LDADD= -lnetgraph
OpenPOWER on IntegriCloud