Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls/files: 11.1.1-headers-gentoo.patch
Date: Mon, 17 Jan 2011 15:53:43
Message-Id: 20110117155331.D3D7320057@flycatcher.gentoo.org
1 grozin 11/01/17 15:53:31
2
3 Added: 11.1.1-headers-gentoo.patch
4 Log:
5 Version bump
6
7 (Portage version: 2.2.0_alpha15/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-lisp/ecls/files/11.1.1-headers-gentoo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/files/11.1.1-headers-gentoo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/files/11.1.1-headers-gentoo.patch?rev=1.1&content-type=text/plain
14
15 Index: 11.1.1-headers-gentoo.patch
16 ===================================================================
17 diff -Naur ecl-8.12.0.orig/src/h/object.h ecl-8.12.0/src/h/object.h
18 --- ecl.orig/src/h/object.h 2008-12-17 16:41:53.000000000 +0100
19 +++ ecl/src/h/object.h 2008-12-17 19:35:05.000000000 +0100
20 @@ -23,8 +23,13 @@
21 Integer and boolean types (see config.h)
22 */
23
24 +#ifndef TRUE
25 #define TRUE 1 /* boolean true value */
26 +#endif
27 +
28 +#ifndef FALSE
29 #define FALSE 0 /* boolean false value */
30 +#endif
31
32 #if !defined(__cplusplus) && !defined(bool)
33 typedef int bool;