Commits

Eric F authored and Zero King committed 6d1dd5e9c8f
bmon: fix for undeclared identifier (#5636)

- Closes: https://trac.macports.org/ticket/59334 - Add size to checksums
No tags

net/bmon/files/patch-fix__unused.diff

Added
1 +Fix for #59334
2 + - error: use of undeclared identifier 'unused'
3 +
4 +--- include/bmon/bmon.h.orig
5 ++++ include/bmon/bmon.h
6 +@@ -67,6 +67,11 @@ enum {
7 + #define __unused__
8 + #endif
9 +
10 ++/* #59334 */
11 ++#ifdef __APPLE__
12 ++#define __unused __attribute__ ((unused))
13 ++#endif
14 ++
15 + #ifdef DEBUG
16 + #define DBG(FMT, ARG...) \
17 + do { \

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut