a10c8cef56
Fixed --version flag in dhcrelay Clarified error message when lease limit exceeded Log messages when failover peer names mismatch have been improved to point out the problem. Manpage entries in dhcp-options.5 for the 'domain-list' format have been updated. The 'min-secs' configuration parameter's log message has been updated to be more helpful. Fixes to allow code to compile on Mac OS X Leopard (10.5). See http://www.isc.org/sw/dhcp/dhcp_rel2.php for all the details
30 lines
956 B
Makefile
30 lines
956 B
Makefile
# $NetBSD: Makefile,v 1.5 2008/05/27 19:34:30 adrianp Exp $
|
|
#
|
|
|
|
COMMENT= ISC Dynamic Host Configuration Protocol (DHCP) Base
|
|
COMPONENT= base
|
|
SUBDIR= common minires dst
|
|
|
|
MAN_FILES= man5/dhcp-eval.5 man5/dhcp-options.5
|
|
|
|
INSTALLATION_DIRS= include/isc-dhcp include/omapip \
|
|
lib share/doc/isc-dhcp-${COMPONENT}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README \
|
|
${PREFIX}/share/doc/isc-dhcp-${COMPONENT}
|
|
${INSTALL_DATA} ${WRKSRC}/RELNOTES \
|
|
${PREFIX}/share/doc/isc-dhcp-${COMPONENT}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/References.txt \
|
|
${PREFIX}/share/doc/isc-dhcp-${COMPONENT}
|
|
${INSTALL_DATA} ${WRKSRC}/includes/isc-dhcp/*.h \
|
|
${PREFIX}/include/isc-dhcp
|
|
${INSTALL_DATA} ${WRKSRC}/includes/omapip/*.h \
|
|
${PREFIX}/include/omapip
|
|
${INSTALL_LIB} \
|
|
${WRKSRC}/work.`${WRKSRC}/configure --print-sysname`/dst/*.a \
|
|
${PREFIX}/lib
|
|
${CHMOD} ${LIBMODE} ${PREFIX}/lib/libdst.a
|
|
|
|
.include "../../net/isc-dhcp/Makefile.common"
|
|
.include "../../mk/bsd.pkg.mk"
|