diff options
author | fjoe <fjoe@FreeBSD.org> | 2009-02-05 15:19:16 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2009-02-05 15:19:16 +0800 |
commit | f426e734004a1a8d5959cafa01b8b394a748b585 (patch) | |
tree | 3d11a7c68de90817b09a7b071efc2a33e747b48f /misc | |
parent | b3bd5ed9f43f6369d30debaa9d78141bc4ba366b (diff) | |
download | freebsd-ports-gnome-f426e734004a1a8d5959cafa01b8b394a748b585.tar.gz freebsd-ports-gnome-f426e734004a1a8d5959cafa01b8b394a748b585.tar.zst freebsd-ports-gnome-f426e734004a1a8d5959cafa01b8b394a748b585.zip |
Fix ncurses build.
PR: 131405
Diffstat (limited to 'misc')
-rw-r--r-- | misc/mc/files/patch-mhl-types.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/mc/files/patch-mhl-types.h b/misc/mc/files/patch-mhl-types.h new file mode 100644 index 000000000000..31312d83ca58 --- /dev/null +++ b/misc/mc/files/patch-mhl-types.h @@ -0,0 +1,15 @@ +--- mhl/types.h.orig 2009-02-05 12:59:45.000000000 +0600 ++++ mhl/types.h 2009-02-05 13:00:12.000000000 +0600 +@@ -7,10 +7,12 @@ + #ifndef __MHL_TYPES_H + #define __MHL_TYPES_H + ++#ifndef __bool_true_false_are_defined + typedef enum + { + false = 0, + true = 1 + } bool; ++#endif + + #endif |