]> git.pld-linux.org Git - packages/libnids.git/commitdiff
- fix build with gcc 5
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 28 Mar 2016 12:49:29 +0000 (21:49 +0900)
committerJan Rękorajski <baggins@pld-linux.org>
Mon, 28 Mar 2016 12:49:29 +0000 (21:49 +0900)
- rel 2

gcc5.patch [new file with mode: 0644]
libnids.spec

diff --git a/gcc5.patch b/gcc5.patch
new file mode 100644 (file)
index 0000000..03b752a
--- /dev/null
@@ -0,0 +1,36 @@
+--- libnids-1.24/src/checksum.c~       2010-02-26 19:58:41.000000000 +0900
++++ libnids-1.24/src/checksum.c        2016-03-28 21:48:45.105542792 +0900
+@@ -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))
index 7eaa04ae9bc258ce25d26d5a3626ea5a5ca46c51..2c44cdc31089b1d81e40fb15e19100077ca90d98 100644 (file)
@@ -2,7 +2,7 @@ Summary:        Implementation of E-component of Network Intrusion Detection System
 Summary(pl.UTF-8):     Implementacja E-komponentu NIDS (sieciowego systemu wykrywania intruzów)
 Name:          libnids
 Version:       1.24
-Release:       1
+Release:       2
 Epoch:         1
 License:       BSD
 Group:         Libraries
@@ -10,6 +10,7 @@ Source0:      http://dl.sourceforge.net/libnids/%{name}-%{version}.tar.gz
 # Source0-md5: 72d37c79c85615ffe158aa524d649610
 Patch0:                %{name}-libnet1.patch
 Patch1:                %{name}-nolibs.patch
+Patch2:                gcc5.patch
 URL:           http://libnids.sourceforge.net/
 BuildRequires: autoconf
 BuildRequires: automake
This page took 0.125295 seconds and 4 git commands to generate.