Ticket #239 (accepted defect) — at Version 2
double declaration of bool false and true (conflicting with stdbool.h)
Reported by: | Patrick Winnertz <winnie@…> | Owned by: | metux |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | mc-core | Version: | 4.6.2 |
Keywords: | committed-master | Cc: | |
Blocked By: | Blocking: | ||
Branch state: | Votes for changeset: |
Description (last modified by metux) (diff)
Hey,
There is already a definition of bool in C, which uses also false and true,
therefore mc fails to build with ncurses currently as ncurses include
stdbool.h> where these are defined:
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef cplusplus
#define bool _Bool
#define true 1
#define false 0
#else /* cplusplus */
.....
#endif
So we should remove this completly from mhl/* and use this instead.
Change History
Note: See
TracTickets for help on using
tickets.
This message has 0 attachment(s)