freebsd-dev/sbin/dhclient/Makefile
Makoto Matsushita 0ed8a30f62 Fix "make release.4" breakage.
src/contrib/isc-dhcp/includes/minires/resolv.h has a 'extern' definition
but it makes an error when linking crunched binary just like this:

	dhclient.lo: In function `MRres_nquery':
	dhclient.lo(.text+0x2dcce): undefined reference to `__h_errno_set'
	dhclient.lo(.text+0x2dd5b): undefined reference to `__h_errno_set'
	dhclient.lo: In function `MRres_nquerydomain':
	dhclient.lo(.text+0x2de53): undefined reference to `__h_errno_set'

The author understands this will be a problem (see comments in resolv.h).
Murray said that the author will fix this, but as a temporary solution,
modifying the source code and not to use __h_errno_set.

BTW, I'm sorry that previous commitlog in src/sbin/dhclient/Makefile should
read "Found by:" instead of "Confirmed by"; I just found that rev 1.15
has a typo so fixed.

Tested on: ushi.jp.FreeBSD.org with today's 5-current source code.
           (belive me, "make release.4" works fine now)
2002-02-28 16:17:18 +00:00

55 lines
1.9 KiB
Makefile

# Makefile for ISC DHCP client.
# $FreeBSD$
SUBDIR= common dst minires omapip client
# Our directory structure confuses crunchgen, so we must explicitly
# list the requisite object files when building crunched binaries for
# release floppies.
.ifdef(RELEASE_CRUNCH)
# client
OBJS= client/clparse.o client/dhclient.o
# common
OBJS+= common/alloc.o common/bpf.o common/comapi.o common/conflex.o \
common/ctrace.o common/discover.o common/dispatch.o common/dlpi.o \
common/dns.o common/ethernet.o common/execute.o common/fddi.o \
common/icmp.o common/inet.o common/lpf.o common/memory.o \
common/nit.o common/options.o common/packet.o common/parse.o \
common/print.o common/raw.o common/resolv.o common/socket.o \
common/tables.o common/tr.o common/tree.o common/upf.o
# dst
OBJS+= dst/base64.o dst/dst_api.o dst/dst_support.o dst/hmac_link.o \
dst/md5_dgst.o dst/prandom.o
# minires
OBJS+= minires/ns_date.o minires/ns_name.o minires/ns_parse%FIXED.o \
minires/ns_samedomain.o minires/ns_sign.o minires/ns_verify.o \
minires/res_comp.o minires/res_findzonecut.o minires/res_init.o \
minires/res_mkquery.o minires/res_mkupdate.o minires/res_query%FIXED.o \
minires/res_send.o minires/res_sendsigned.o minires/res_update.o
# omapi
OBJS+= omapip/alloc.o omapip/array.o omapip/auth.o omapip/buffer.o \
omapip/connection.o omapip/convert.o omapip/dispatch.o \
omapip/errwarn.o omapip/generic.o omapip/handle.o omapip/hash.o \
omapip/inet_addr.o omapip/listener.o omapip/message.o \
omapip/mrtrace.o omapip/protocol.o omapip/result.o \
omapip/support.o omapip/toisc.o omapip/trace.o
# src/release/Makefile (release.4) tries to invokes this makefile with
# the target set to the list of all objects defined above. This
# top-level Makefile doesn't actually know how to build those objects
# though, so we must run ``make all'' instead when we are asked to
# generate an individual object file.
${OBJS}: all
.endif
.include <bsd.subdir.mk>