| [5ecce60] | 1 | Submitted By: Joe Ciccone <jciccone@gmail.com> | 
|---|
|  | 2 | Date: 14-06-2010 | 
|---|
|  | 3 | Initial Package Version: 2.6.18 | 
|---|
|  | 4 | Upstream Status: Unknown | 
|---|
|  | 5 | Origin: Joe Ciccone | 
|---|
|  | 6 | Description: This patch gives the ability to change the libdir. | 
|---|
|  | 7 | Updated for Iproute2-2.6.28 by Jim Gifford | 
|---|
|  | 8 | Updated for Iproute2-2.6.34 by Joe Ciccone | 
|---|
|  | 9 | Updated for Iproute2-2.6.37 by Joe Ciccone | 
|---|
|  | 10 | Renamed for Iproute2-2.6.38 by Jonathan Norman | 
|---|
|  | 11 | Rediffed for Iproute2-3.4.0 by William Harrington | 
|---|
|  | 12 | Rediffed for Iproute2-3.8.0 by William Harrington | 
|---|
| [7d77fcf] | 13 | Renamed for Iproute2-3.12.0 by William Harrington | 
|---|
| [5ecce60] | 14 |  | 
|---|
|  | 15 | diff -Naur iproute2-3.8.0.orig/Makefile iproute2-3.8.0/Makefile | 
|---|
|  | 16 | --- iproute2-3.8.0.orig/Makefile        2013-02-21 16:41:20.000000000 +0000 | 
|---|
|  | 17 | +++ iproute2-3.8.0/Makefile     2013-06-03 12:31:18.891352195 +0000 | 
|---|
|  | 18 | @@ -13,7 +13,7 @@ | 
|---|
|  | 19 |  | 
|---|
|  | 20 | SHARED_LIBS = y | 
|---|
|  | 21 |  | 
|---|
|  | 22 | -DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" | 
|---|
|  | 23 | +DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" -DARPDDIR=\"$(ARPDDIR)\" | 
|---|
|  | 24 | ifneq ($(SHARED_LIBS),y) | 
|---|
|  | 25 | DEFINES+= -DNO_SHARED_LIBS | 
|---|
|  | 26 | endif | 
|---|
|  | 27 | diff -Naur iproute2-3.8.0.orig/include/iptables.h iproute2-3.8.0/include/iptables.h | 
|---|
|  | 28 | --- iproute2-3.8.0.orig/include/iptables.h      2013-02-21 16:41:20.000000000 +0000 | 
|---|
|  | 29 | +++ iproute2-3.8.0/include/iptables.h   2013-06-03 12:31:18.891352195 +0000 | 
|---|
|  | 30 | @@ -4,8 +4,12 @@ | 
|---|
|  | 31 | #include "iptables_common.h" | 
|---|
|  | 32 | #include "libiptc/libiptc.h" | 
|---|
|  | 33 |  | 
|---|
|  | 34 | +#ifndef LIBDIR | 
|---|
|  | 35 | +#define LIBDIR "/usr/lib" | 
|---|
|  | 36 | +#endif | 
|---|
|  | 37 | + | 
|---|
|  | 38 | #ifndef IPT_LIB_DIR | 
|---|
|  | 39 | -#define IPT_LIB_DIR "/usr/local/lib/iptables" | 
|---|
|  | 40 | +#define IPT_LIB_DIR LIBDIR "/iptables" | 
|---|
|  | 41 | #endif | 
|---|
|  | 42 |  | 
|---|
|  | 43 | #ifndef IPPROTO_SCTP | 
|---|
|  | 44 | diff -Naur iproute2-3.8.0.orig/misc/arpd.c iproute2-3.8.0/misc/arpd.c | 
|---|
|  | 45 | --- iproute2-3.8.0.orig/misc/arpd.c     2013-02-21 16:41:20.000000000 +0000 | 
|---|
|  | 46 | +++ iproute2-3.8.0/misc/arpd.c  2013-06-03 12:31:18.891352195 +0000 | 
|---|
|  | 47 | @@ -40,7 +40,7 @@ | 
|---|
|  | 48 | int resolve_hosts; | 
|---|
|  | 49 |  | 
|---|
|  | 50 | DB     *dbase; | 
|---|
|  | 51 | -char   *dbname = "/var/lib/arpd/arpd.db"; | 
|---|
|  | 52 | +char   *dbname = ARPDDIR "/arpd.db"; | 
|---|
|  | 53 |  | 
|---|
|  | 54 | int    ifnum; | 
|---|
|  | 55 | int    *ifvec; | 
|---|