aboutsummaryrefslogtreecommitdiff
path: root/sbin/dhclient
Commit message (Collapse)AuthorAgeFilesLines
* Removed now unused INTERNALSTATICLIB.Ruslan Ermilov2002-05-134-8/+0
| | | | | | | | INTERNALLIB now implies NOPIC and NOPROFILE. Removed gratuitous NOMAN. Notes: svn path=/head/; revision=96513
* Do not use perl where sed is more than adequate.David E. O'Brien2002-04-131-1/+4
| | | | Notes: svn path=/head/; revision=94629
* Fix "make release.4" breakage.Makoto Matsushita2002-02-282-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=91490
* For unbraking "make release": s/client/common/gMakoto Matsushita2002-02-281-7/+7
| | | | | | | | | (these files are sitting in src/contrib/isc-dhcp/common, not .../client.) Confirmed by: 5.0-CURRENT-20020228-JPSNAP at snapshots.jp.FreeBSD.org Notes: svn path=/head/; revision=91450
* Add some ifdef(RELEASE_CRUNCH) goo to explicitly list the requisiteMurray Stokely2002-02-261-0/+48
| | | | | | | | object files for crunchgen. Without this patch, release.4 will fail to build the crunched binaries for the release floppies. Notes: svn path=/head/; revision=91306
* Neutralize bits of ns_parse.c with bad juju.David E. O'Brien2002-02-201-1/+6
| | | | Notes: svn path=/head/; revision=90954
* Style cleanup.David E. O'Brien2002-02-196-33/+24
| | | | | | | Approved by: Murray Notes: svn path=/head/; revision=90940
* Makefile glue for DHCP v3 import.Murray Stokely2002-02-197-20/+151
| | | | Notes: svn path=/head/; revision=90922
* If the dhcpd server doesn't provide a domain name or dns servers thenAlfred Perlstein2002-02-011-4/+7
| | | | | | | | | | | | | don't clobber /etc/resolv.conf Add $FreeBSD. Submitted by: an j. peterson" <rbw@myplace.org> Verified fix in: dhcp-3.0.1rc6 PR: misc/34455 Notes: svn path=/head/; revision=90080
* Default to WARNS=2.David E. O'Brien2001-12-041-0/+1
| | | | | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike Notes: svn path=/head/; revision=87325
* beforeinstall -> SCRIPTS.Ruslan Ermilov2001-04-071-5/+3
| | | | Notes: svn path=/head/; revision=75286
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-2/+2
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74815
* Add nsswitch support. By creating an /etc/nsswitch.conf file, you canJacques Vidrine2000-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | configure FreeBSD so that various databases such as passwd and group can be looked up using flat files, NIS, or Hesiod. = Hesiod has been added to libc (see hesiod(3)). = A library routine for parsing nsswitch.conf and invoking callback functions as specified has been added to libc (see nsdispatch(3)). = The following C library functions have been modified to use nsdispatch: . getgrent, getgrnam, getgrgid . getpwent, getpwnam, getpwuid . getusershell . getaddrinfo . gethostbyname, gethostbyname2, gethostbyaddr . getnetbyname, getnetbyaddr . getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr = host.conf has been removed from src/etc. rc.network has been modified to warn that host.conf is no longer used at boot time. In addition, if there is a host.conf but no nsswitch.conf, the latter is created at boot time from the former. Obtained from: NetBSD Notes: svn path=/head/; revision=65532
* Alternate script for dhclient to use in setting the received configurationDavid E. O'Brien2000-07-271-0/+511
| | | | | | | | | | on the host. PR: 15342 Submitted by: Patrick Bihan-Faou <patrick@mindstep.com> Notes: svn path=/cvs2svn/branches/MINDSTEP/; revision=63925
* Blah, need to add /usr/bin to the path also.David E. O'Brien2000-07-211-1/+1
| | | | | | | | | Of course this is a bug in that the dhclient script will not work properly if one has a local / and an NFS mounted /usr and needs to obtain its IP address via DHCP before being able to mount /usr. Notes: svn path=/head/; revision=63732
* Need /usr/sbin for arp(8).David E. O'Brien2000-07-201-1/+1
| | | | Notes: svn path=/head/; revision=63633
* Patchlevel 3 of the ISC 2.0 dhcp client now requires us to give it theDavid E. O'Brien2000-07-201-0/+1
| | | | | | | shell script's PATH setting in the environment. Notes: svn path=/head/; revision=63630
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Add new file that needs compiling.David E. O'Brien1999-06-241-3/+3
| | | | Notes: svn path=/head/; revision=48174
* Install dhclient-script under ${DESTDIR}.Bruce Evans1999-04-031-2/+3
| | | | | | | PR: 10615, 10891 Notes: svn path=/head/; revision=45259
* More style fixes to bring this almost to bde's suggested version.David E. O'Brien1999-02-181-17/+13
| | | | Notes: svn path=/head/; revision=44120
* bde suggests not to trust ${COPY} to always be defined.David E. O'Brien1999-02-181-17/+13
| | | | | | | also fix style bugs submitted by Bruce Notes: svn path=/head/; revision=44113
* bmake framework for ISC-DHCP clientDavid E. O'Brien1999-02-101-0/+30
Notes: svn path=/vendor/OpenBSD/dist/; revision=43855