[Bug 235799] net-im/uTox: Fix push to talk

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Feb 23 03:44:27 UTC 2019


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235799

--- Comment #1 from Tobias Kortkamp <tobik at freebsd.org> ---
Comment on attachment 202086
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=202086
Patch to fix push to talk support.

+ #ifdef __linux__
+ #include <linux/input.h>
++#elif defined(__DragonFly__) || defined(__FreeBSD__)
++#include <linux/input.h>
++#endif

Have you sent this change upstream too?  How about doing it like
this?

#if defined(__linux__) || defined(__DragonFly__) || defined(__FreeBSD__)
#include <linux/input.h>
#endif

Please add a link to the upstream commit in the patch header.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list