summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2009-08-22 06:58:08 +0000
committerAndrey Grozin <grozin@gentoo.org>2009-08-22 06:58:08 +0000
commit829f8ac8b47788af9ebd4600ecdf54ffc97c97ef (patch)
tree0ce52d780fcbd273ff0b2f1ef7a114672bb98432 /dev-lisp/ecls/files
parentInitial import from bug 278265. (diff)
downloadgentoo-2-829f8ac8b47788af9ebd4600ecdf54ffc97c97ef.tar.gz
gentoo-2-829f8ac8b47788af9ebd4600ecdf54ffc97c97ef.tar.bz2
gentoo-2-829f8ac8b47788af9ebd4600ecdf54ffc97c97ef.zip
Version bump (from the lisp overlay)
(Portage version: 2.2_rc38/cvs/Linux i686)
Diffstat (limited to 'dev-lisp/ecls/files')
-rw-r--r--dev-lisp/ecls/files/9.8.4-headers-gentoo.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-lisp/ecls/files/9.8.4-headers-gentoo.patch b/dev-lisp/ecls/files/9.8.4-headers-gentoo.patch
new file mode 100644
index 000000000000..635fc5d4afde
--- /dev/null
+++ b/dev-lisp/ecls/files/9.8.4-headers-gentoo.patch
@@ -0,0 +1,17 @@
+diff -Naur ecl-8.12.0.orig/src/h/object.h ecl-8.12.0/src/h/object.h
+--- ecl.orig/src/h/object.h 2008-12-17 16:41:53.000000000 +0100
++++ ecl/src/h/object.h 2008-12-17 19:35:05.000000000 +0100
+@@ -23,8 +23,13 @@
+ Integer and boolean types (see config.h)
+ */
+
++#ifndef TRUE
+ #define TRUE 1 /* boolean true value */
++#endif
++
++#ifndef FALSE
+ #define FALSE 0 /* boolean false value */
++#endif
+
+ #if !defined(__cplusplus) && !defined(bool)
+ typedef int bool;