diff options
author | mat <mat@FreeBSD.org> | 2014-02-03 22:23:07 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2014-02-03 22:23:07 +0800 |
commit | 49fd75e04a244b4a6f5e8384c2ae41a3ba875689 (patch) | |
tree | 86d2ab99b29621113cbed016f2d6e8bafc6c90c4 /net | |
parent | 81f335703498f8df3e6798690af8655ffdaf80ca (diff) | |
download | freebsd-ports-graphics-49fd75e04a244b4a6f5e8384c2ae41a3ba875689.tar.gz freebsd-ports-graphics-49fd75e04a244b4a6f5e8384c2ae41a3ba875689.tar.zst freebsd-ports-graphics-49fd75e04a244b4a6f5e8384c2ae41a3ba875689.zip |
Fix on 10, whilst gcc is exporting inline functions, clang isn't.
Sponsored by: Absolight
Diffstat (limited to 'net')
-rw-r--r-- | net/libnids/Makefile | 1 | ||||
-rw-r--r-- | net/libnids/files/patch-src::libnids.c | 16 | ||||
-rw-r--r-- | net/libnids/files/patch-src__checksum.c | 36 | ||||
-rw-r--r-- | net/libnids/files/patch-src__libnids.c | 10 |
4 files changed, 47 insertions, 16 deletions
diff --git a/net/libnids/Makefile b/net/libnids/Makefile index e0a18267f98..ad3162467ae 100644 --- a/net/libnids/Makefile +++ b/net/libnids/Makefile @@ -3,6 +3,7 @@ PORTNAME= libnids PORTVERSION= 1.24 +PORTREVISION= 1 CATEGORIES= net security MASTER_SITES= SF diff --git a/net/libnids/files/patch-src::libnids.c b/net/libnids/files/patch-src::libnids.c deleted file mode 100644 index e514cf2fdf2..00000000000 --- a/net/libnids/files/patch-src::libnids.c +++ /dev/null @@ -1,16 +0,0 @@ -Description: Do not include the non-existent alloca.h header. - I'll forward this patch next week after I write a configure test for it. -Forwarded: no -Author: Peter Pentchev <roam@FreeBSD.org> -Last-Update: 2010-06-011 - ---- src/libnids.c.orig -+++ src/libnids.c -@@ -14,7 +14,6 @@ - #include <stdlib.h> - #include <string.h> - #include <syslog.h> --#include <alloca.h> - #include <pcap.h> - #include <errno.h> - #include <config.h> diff --git a/net/libnids/files/patch-src__checksum.c b/net/libnids/files/patch-src__checksum.c new file mode 100644 index 00000000000..650a7cc0012 --- /dev/null +++ b/net/libnids/files/patch-src__checksum.c @@ -0,0 +1,36 @@ +--- ./src/checksum.c.orig 2014-02-03 14:04:23.999531000 +0000 ++++ ./src/checksum.c 2014-02-03 14:15:33.000000000 +0000 +@@ -120,7 +120,7 @@ + By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by Arnt + Gulbrandsen. + */ +-inline u_short ip_fast_csum(u_char * iph, u_int ihl) ++u_short ip_fast_csum(u_char * iph, u_int ihl) + { + u_int sum; + if (dontchksum(((struct ip*)iph)->ip_src.s_addr)) +@@ -191,13 +191,13 @@ + this routine is used for miscellaneous IP-like checksums, mainly in + icmp.c + */ +-inline u_short ++u_short + ip_compute_csum(u_char * buff, int len) + { + return (csum_fold(csum_partial(buff, len, 0))); + } + +-inline u_short ++u_short + my_tcp_check(struct tcphdr *th, int len, u_int saddr, u_int daddr) + { + if (dontchksum(saddr)) +@@ -205,7 +205,7 @@ + return csum_tcpudp_magic(saddr, daddr, len, IPPROTO_TCP, + csum_partial((u_char *)th, len, 0)); + } +-inline u_short ++u_short + my_udp_check(void *u, int len, u_int saddr, u_int daddr) + { + if (dontchksum(saddr)) diff --git a/net/libnids/files/patch-src__libnids.c b/net/libnids/files/patch-src__libnids.c new file mode 100644 index 00000000000..0a3a2991597 --- /dev/null +++ b/net/libnids/files/patch-src__libnids.c @@ -0,0 +1,10 @@ +--- ./src/libnids.c.orig 2010-03-01 21:13:25.000000000 +0000 ++++ ./src/libnids.c 2014-02-03 14:04:04.000000000 +0000 +@@ -14,7 +14,6 @@ + #include <stdlib.h> + #include <string.h> + #include <syslog.h> +-#include <alloca.h> + #include <pcap.h> + #include <errno.h> + #include <config.h> |