Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in pax-utils: porting.h
Date: Sat, 30 Apr 2011 00:52:30
Message-Id: 20110430005215.881E720054@flycatcher.gentoo.org
1 vapier 11/04/30 00:52:15
2
3 Modified: porting.h
4 Log:
5 dont include alloca.h on openbsd #363903 by Maxim Koltsov
6
7 Revision Changes Path
8 1.40 pax-utils/porting.h
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?rev=1.40&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?rev=1.40&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?r1=1.39&r2=1.40
13
14 Index: porting.h
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v
17 retrieving revision 1.39
18 retrieving revision 1.40
19 diff -u -r1.39 -r1.40
20 --- porting.h 15 Jan 2010 12:06:37 -0000 1.39
21 +++ porting.h 30 Apr 2011 00:52:15 -0000 1.40
22 @@ -1,7 +1,7 @@
23 /*
24 * Copyright 2005-2007 Gentoo Foundation
25 * Distributed under the terms of the GNU General Public License v2
26 - * $Header: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v 1.39 2010/01/15 12:06:37 vapier Exp $
27 + * $Header: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v 1.40 2011/04/30 00:52:15 vapier Exp $
28 *
29 * Copyright 2005-2007 Ned Ludd - <solar@g.o>
30 * Copyright 2005-2007 Mike Frysinger - <vapier@g.o>
31 @@ -36,7 +36,7 @@
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include "elf.h"
35 -#if !defined(__FreeBSD__)
36 +#if !defined(__FreeBSD__) && !defined(__OpenBSD__)
37 # include <alloca.h>
38 #endif
39 #if defined(__linux__)