dhcpd/dhcpd.patch

Tue, 28 Aug 2012 18:35:40 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:35:40 +0200
changeset 575
6e491d7671a4
permissions
-rw-r--r--

Update version, modernize packaging, accommodate libevent version 2 opaque
evbuffer datatype, port Linux style flock(2) to SVR4, include correct
non BSD and non SVR4 headers in DNS and resolving logic, correctly
include a arc4random(3) implementation for platforms lacking it,
conditionally implement the nonstandard MIN(a,b) macro, and use
parallel make for faster SMP and multicore builds.

     1 Index: common/bpf.c
     2 --- common/bpf.c.orig	2009-11-20 02:48:59.000000000 +0100
     3 +++ common/bpf.c	2010-11-27 09:53:47.000000000 +0100
     4 @@ -580,6 +580,9 @@
     5  	 */
     6          switch (sa->sdl_type) {
     7                  case IFT_ETHER:
     8 +#ifdef IFT_L2VLAN
     9 +                case IFT_L2VLAN:
    10 +#endif
    11                          hw->hlen = sa->sdl_alen + 1;
    12                          hw->hbuf[0] = HTYPE_ETHER;
    13                          memcpy(&hw->hbuf[1], LLADDR(sa), sa->sdl_alen);

mercurial