diff options
author | asmodai <asmodai@FreeBSD.org> | 2001-01-29 07:56:34 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2001-01-29 07:56:34 +0000 |
commit | 077d20719490b62247d289e6a15a482095e7ba57 (patch) | |
tree | 769e99f3a0e418fc91c27d839d7bb7d69c537448 /libexec | |
parent | 11132720d3fe4b4b522a26de29c3aec143fa2352 (diff) | |
download | FreeBSD-src-077d20719490b62247d289e6a15a482095e7ba57.zip FreeBSD-src-077d20719490b62247d289e6a15a482095e7ba57.tar.gz |
Add static dependency to libisc to get isc_movefile().
Submitted by: Munehiro Matsuda <haro@kubota.co.jp>
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/named-xfer/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libexec/named-xfer/Makefile b/libexec/named-xfer/Makefile index 62ed91a..fcda9909 100644 --- a/libexec/named-xfer/Makefile +++ b/libexec/named-xfer/Makefile @@ -10,6 +10,17 @@ USE_LIBBIND= true PROG= named-xfer SRCS= pathnames.h \ named-xfer.c db_glue.c ns_glue.c tmp_version.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} + MAN8= named-xfer.8 .include <bsd.prog.mk> |