Add static dependency on libisc.a to get isc_movefile() on which named

now depends.  This keeps named the same as before the import, that is: only
linking against libc dynamically, at a little space increase, which might
be due to the source code changes anyway.  Very neglectable space
difference.

Some people might dub it a hack.  It will do for now at least.
This commit is contained in:
Jeroen Ruigrok van der Werven 2001-01-28 23:21:00 +00:00
parent dd46afd299
commit b54a8d8a2e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71762

View File

@ -15,6 +15,17 @@ SRCS= tmp_version.c pathnames.h \
ns_resp.c ns_stats.c ns_ncache.c ns_xfr.c ns_glue.c \
ns_udp.c ns_config.c ns_update.c ns_ixfr.c ns_signal.c \
ns_sort.c ns_notify.c
.if exists(${.OBJDIR}/../../lib/libisc)
LIBISCDIR:= ${.OBJDIR}/../../lib/libisc
.else
LIBISCDIR!= cd ${.CURDIR}/../../lib/libisc; make -V .OBJDIR
.endif
LIBISC:= ${LIBISCDIR}/libisc.a
DPADD+= ${LIBISC}
LDADD+= ${LIBISC}
MAN5= named.conf.5
MAN8= named.8 named-bootconf.8 nsupdate.8