Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/frox/files: 0.7.18-respect-CFLAGS.patch 0.7.18-netfilter-includes.patch
Date: Sat, 03 Mar 2012 12:53:25
Message-Id: 20120303125316.A2B8A2004B@flycatcher.gentoo.org
1 pacho 12/03/03 12:53:16
2
3 Added: 0.7.18-respect-CFLAGS.patch
4 0.7.18-netfilter-includes.patch
5 Log:
6 Respect CFLAGS, add transparent support and more fixes, bug #406483 by Bertrand Jacquin. Drop old.
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 net-ftp/frox/files/0.7.18-respect-CFLAGS.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/frox/files/0.7.18-respect-CFLAGS.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/frox/files/0.7.18-respect-CFLAGS.patch?rev=1.1&content-type=text/plain
15
16 Index: 0.7.18-respect-CFLAGS.patch
17 ===================================================================
18 --- configure.in 2005-02-04 11:24:55.000000000 +0100
19 +++ configure.in 2012-03-01 22:56:25.985725178 +0100
20 @@ -46,11 +46,9 @@
21 ;;
22 *)
23 AC_MSG_RESULT(no)
24 - CFLAGS="$CFLAGS -O2"
25 ;;
26 esac],
27 - [AC_MSG_RESULT(no)
28 - CFLAGS="$CFLAGS -O2"]
29 + [AC_MSG_RESULT(no)]
30 )
31
32 AC_MSG_CHECKING(whether to compile in profiling info)
33
34
35
36 1.1 net-ftp/frox/files/0.7.18-netfilter-includes.patch
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/frox/files/0.7.18-netfilter-includes.patch?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/frox/files/0.7.18-netfilter-includes.patch?rev=1.1&content-type=text/plain
40
41 Index: 0.7.18-netfilter-includes.patch
42 ===================================================================
43 --- configure.in.ori 2012-03-01 22:32:17.044450088 +0100
44 +++ configure.in 2012-03-01 22:36:40.995882948 +0100
45 @@ -331,7 +331,12 @@
46 AC_HEADER_STDC
47 AC_HEADER_SYS_WAIT
48 AC_CHECK_HEADERS(fcntl.h strings.h sys/ioctl.h sys/time.h syslog.h unistd.h)
49 -AC_CHECK_HEADERS(linux/netfilter_ipv4.h, , , [#include <limits.h>])
50 +AC_CHECK_HEADERS(linux/netfilter_ipv4.h, , ,[
51 + #include <limits.h>
52 + #include <sys/socket.h>
53 + #include <linux/in.h>
54 + #include <linux/in6.h>
55 +])
56
57 dnl Checks for typedefs, structures, and compiler characteristics.
58 AC_C_CONST