summaryrefslogtreecommitdiff
path: root/pstack/bucomm.h
diff options
context:
space:
mode:
authorunknown <vva@eagle.mysql.r18.ru>2004-02-09 23:20:21 +0400
committerunknown <vva@eagle.mysql.r18.ru>2004-02-09 23:20:21 +0400
commitae8e10d6e589de4836b81433805328931c9f92a3 (patch)
tree3e74b970f38073e1db7ab4e55804a96ff9c248a4 /pstack/bucomm.h
parentfaa8a41b1db57e643617eda8c49803f6e1287f87 (diff)
downloadmariadb-git-ae8e10d6e589de4836b81433805328931c9f92a3.tar.gz
fixed Bug #1661 "Compiling --with-pstack fails with binutils"
pstack/bucomm.h: added safe definition of boolean,true and false as fix for Bug #1661 "Compiling --with-pstack fails with binutils" pstack/budbg.h: added safe definition of boolean,true and false as fix for Bug #1661 "Compiling --with-pstack fails with binutils"
Diffstat (limited to 'pstack/bucomm.h')
-rw-r--r--pstack/bucomm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/pstack/bucomm.h b/pstack/bucomm.h
index 7712a70f5a2..6b3633d8d63 100644
--- a/pstack/bucomm.h
+++ b/pstack/bucomm.h
@@ -50,6 +50,12 @@ void *alloca ();
# endif /* HAVE_ALLOCA_H */
#endif
+#ifndef BFD_TRUE_FALSE
+#define boolean bfd_boolean
+#define true TRUE
+#define false FALSE
+#endif
+
/* bucomm.c */
void bfd_nonfatal PARAMS ((CONST char *));