diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2019-05-04 06:02:43 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2019-05-04 06:02:43 +0000 |
commit | 1c0b5d82a316f9b222e7b12e13403cee65c6ac84 (patch) | |
tree | 6c3a8967d4a4e2cbcd128d675be146d05a93003a /comms | |
parent | 4289cd0c36a94dc80c7b78e0123889b5cf653998 (diff) | |
download | freebsd-ports-1c0b5d82a316f9b222e7b12e13403cee65c6ac84.zip |
comms/unixcw: fix build with GCC-based architectures
PR: 237744
Submitted by: pkubaj
Diffstat (limited to 'comms')
-rw-r--r-- | comms/unixcw/files/patch-src_xcwcp_receiver.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/comms/unixcw/files/patch-src_xcwcp_receiver.h b/comms/unixcw/files/patch-src_xcwcp_receiver.h new file mode 100644 index 000000000000..7e2285876361 --- /dev/null +++ b/comms/unixcw/files/patch-src_xcwcp_receiver.h @@ -0,0 +1,12 @@ +--- src/xcwcp/receiver.h.orig 2018-12-20 16:18:13 UTC ++++ src/xcwcp/receiver.h +@@ -21,6 +21,9 @@ + + #include <QMouseEvent> + #include <QKeyEvent> ++#ifdef __FreeBSD__ ++#include <sys/time.h> ++#endif + + + |