mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	Release Notes: https://lwn.net/Articles/923952/ Refresh patches: - 110-darwin_fixes.patch - 115-add-config-xtlibdir.patch - 140-allow_pfifo_fast.patch - 140-keep_libmnl_optional.patch - 145-keep_libelf_optional.patch - 150-keep_libcap_optional.patch - 155-keep_tirpc_optional.patch - 170-ip_tiny.patch - 175-reduce-dynamic-syms.patch - 180-drop_FAILED_POLICY.patch - 190-fix-nls-rpath-link.patch - 195-build_variant_ip_tc.patch - 200-drop_libbsd_dependency.patch - 300-selinux-configurable.patch Remove upstreamed: - 320-configure-Remove-include-sys-stat.h.patch While working on it remove AUTORELEASE. Signed-off-by: Nick Hainke <vincent@systemli.org>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/netem/maketable.c
 | |
| +++ b/netem/maketable.c
 | |
| @@ -11,7 +11,9 @@
 | |
|  #include <stdio.h>
 | |
|  #include <stdlib.h>
 | |
|  #include <math.h>
 | |
| +#if !defined(__APPLE__) && !defined(__FreeBSD__)
 | |
|  #include <malloc.h>
 | |
| +#endif
 | |
|  #include <string.h>
 | |
|  #include <sys/types.h>
 | |
|  #include <sys/stat.h>
 | |
| --- a/netem/normal.c
 | |
| +++ b/netem/normal.c
 | |
| @@ -9,8 +9,12 @@
 | |
|  #include <string.h>
 | |
|  #include <limits.h>
 | |
|  
 | |
| +#if !defined(__APPLE__) && !defined(__FreeBSD__)
 | |
|  #include <linux/types.h>
 | |
|  #include <linux/pkt_sched.h>
 | |
| +#else
 | |
| +#define NETEM_DIST_SCALE        8192
 | |
| +#endif
 | |
|  
 | |
|  #define TABLESIZE 16384
 | |
|  #define TABLEFACTOR NETEM_DIST_SCALE
 | |
| --- a/netem/pareto.c
 | |
| +++ b/netem/pareto.c
 | |
| @@ -8,8 +8,12 @@
 | |
|  #include <math.h>
 | |
|  #include <limits.h>
 | |
|  
 | |
| +#if !defined(__APPLE__) && !defined(__FreeBSD__)
 | |
|  #include <linux/types.h>
 | |
|  #include <linux/pkt_sched.h>
 | |
| +#else
 | |
| +#define NETEM_DIST_SCALE        8192
 | |
| +#endif
 | |
|  
 | |
|  static const double a=3.0;
 | |
|  #define TABLESIZE	16384
 | |
| --- a/netem/paretonormal.c
 | |
| +++ b/netem/paretonormal.c
 | |
| @@ -15,10 +15,13 @@
 | |
|  #include <string.h>
 | |
|  #include <math.h>
 | |
|  #include <limits.h>
 | |
| +#if !defined(__APPLE__) && !defined(__FreeBSD__)
 | |
|  #include <malloc.h>
 | |
| -
 | |
|  #include <linux/types.h>
 | |
|  #include <linux/pkt_sched.h>
 | |
| +#else
 | |
| +#define NETEM_DIST_SCALE        8192
 | |
| +#endif
 | |
|  
 | |
|  #define TABLESIZE	16384
 | |
|  #define TABLEFACTOR	NETEM_DIST_SCALE
 |