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: 10.2.1-headers-gentoo.patch clc-lite.lisp 9.8.4-headers-gentoo.patch 0.9h-headers-gentoo.patch 0.9i-headers-gentoo.patch 0.9h-sockets-c++-gentoo.patch 0.9g-headers-gentoo.patch
Date: Fri, 19 Feb 2010 16:36:23
Message-Id: E1NiVq0-00089x-3a@stork.gentoo.org
1 grozin 10/02/19 16:36:20
2
3 Added: 10.2.1-headers-gentoo.patch
4 Removed: clc-lite.lisp 9.8.4-headers-gentoo.patch
5 0.9h-headers-gentoo.patch 0.9i-headers-gentoo.patch
6 0.9h-sockets-c++-gentoo.patch
7 0.9g-headers-gentoo.patch
8 Log:
9 Version bump (from the lisp overlay); obsolete dependency on app-text/texi2html removed
10 (Portage version: 2.2_rc62/cvs/Linux i686)
11
12 Revision Changes Path
13 1.1 dev-lisp/ecls/files/10.2.1-headers-gentoo.patch
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/files/10.2.1-headers-gentoo.patch?rev=1.1&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/files/10.2.1-headers-gentoo.patch?rev=1.1&content-type=text/plain
17
18 Index: 10.2.1-headers-gentoo.patch
19 ===================================================================
20 diff -Naur ecl-8.12.0.orig/src/h/object.h ecl-8.12.0/src/h/object.h
21 --- ecl.orig/src/h/object.h 2008-12-17 16:41:53.000000000 +0100
22 +++ ecl/src/h/object.h 2008-12-17 19:35:05.000000000 +0100
23 @@ -23,8 +23,13 @@
24 Integer and boolean types (see config.h)
25 */
26
27 +#ifndef TRUE
28 #define TRUE 1 /* boolean true value */
29 +#endif
30 +
31 +#ifndef FALSE
32 #define FALSE 0 /* boolean false value */
33 +#endif
34
35 #if !defined(__cplusplus) && !defined(bool)
36 typedef int bool;