Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf/files: autoconf-2.61-GETMNTENT.patch
Date: Sat, 21 Jun 2008 06:27:55
Message-Id: E1K9wZh-0002fM-RI@stork.gentoo.org
1 pva 08/06/21 06:27:49
2
3 Added: autoconf-2.61-GETMNTENT.patch
4 Log:
5 Fixed getmntent issue in 2.61, bug #227603. Dropped stable mips.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch?rev=1.1&content-type=text/plain
13
14 Index: autoconf-2.61-GETMNTENT.patch
15 ===================================================================
16 From: Paul Eggert <eggert@×××××××.edu>
17 Date: Sat, 16 Dec 2006 05:38:41 +0000 (+0000)
18 Subject: * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
19 X-Git-Tag: v2.62~386
20 X-Git-Url: http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff_plain;h=a152d401584cd901f7295647af0382948369de79
21
22 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
23 Define HAVE_GETMNTENT to 1, not to the empty string.
24 Problem originally reported by Jochen Friedrich in
25 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
26 ---
27
28 --- a/lib/autoconf/functions.m4
29 +++ b/lib/autoconf/functions.m4
30 @@ -798,7 +798,7 @@ AC_DEFUN([AC_FUNC_GETMNTENT],
31 # -lseq on Dynix/PTX, -lgen on Unixware.
32 AC_SEARCH_LIBS(getmntent, [sun seq gen],
33 [ac_cv_func_getmntent=yes
34 - AC_DEFINE([HAVE_GETMNTENT], [],
35 + AC_DEFINE([HAVE_GETMNTENT], 1,
36 [Define to 1 if you have the `getmntent' function.])],
37 [ac_cv_func_getmntent=no])
38 ])
39
40
41
42 --
43 gentoo-commits@l.g.o mailing list