[M3commit] CVS Update: cm3
Jay Krell
jkrell at elego.de
Wed Aug 26 07:02:55 CEST 2009
CVSROOT: /usr/cvs
Changes by: jkrell at birch. 09/08/26 07:02:55
Modified files:
cm3/m3-sys/m3gdb/gdb/gdb/: Tag: release_branch_cm3_5_8 m3-bool.h
m3-eval.c m3-eval.h m3-exp.c m3-exp.h
m3-lang.c m3-lang.h m3-nat.c
m3-threads.c m3-threads.h m3-token.c
m3-token.h m3-typeprint.c
m3-typeprint.h m3-uid.c m3-uid.h
m3-util.c m3-util.h m3-valprint.c
m3-valprint.h buildsym.c
Log message:
commit mail with change that didn't trigger:
fix m3gdb build on Solaris (SOLgnu)
cat /usr/include/stdbool.h:
#error "Use of <stdbool.h> is valid only in a c99 compilation environment."
so don't use stdbool.h, use this new m3-bool.h instead:
#ifndef M3_BOOL_H_INCLUDED
#define M3_BOOL_H_INCLUDED
#ifndef __cplusplus
typedef int bool;
#define true 1
#define false 0
#endif
#endif
More information about the M3commit
mailing list