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, 04 Feb 2012 18:15:47
Message-Id: 20120204181537.2E3B22004B@flycatcher.gentoo.org
1 vapier 12/02/04 18:15:37
2
3 Modified: porting.h
4 Log:
5 if O_CLOEXEC is not defined, set it to 0
6
7 Revision Changes Path
8 1.42 pax-utils/porting.h
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?rev=1.42&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?rev=1.42&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/porting.h?r1=1.41&r2=1.42
13
14 Index: porting.h
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v
17 retrieving revision 1.41
18 retrieving revision 1.42
19 diff -u -r1.41 -r1.42
20 --- porting.h 8 Oct 2011 18:34:06 -0000 1.41
21 +++ porting.h 4 Feb 2012 18:15:37 -0000 1.42
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.41 2011/10/08 18:34:06 vapier Exp $
27 + * $Header: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v 1.42 2012/02/04 18:15:37 vapier Exp $
28 *
29 * Copyright 2005-2007 Ned Ludd - <solar@g.o>
30 * Copyright 2005-2007 Mike Frysinger - <vapier@g.o>
31 @@ -203,4 +203,8 @@
32 # endif
33 #endif
34
35 +#ifndef O_CLOEXEC
36 +# define O_CLOEXEC 0
37 +#endif
38 +
39 #endif /* _PORTING_H */