Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Feb 2019 03:44:24 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 235799] net-im/uTox: Fix push to talk
Message-ID:  <bug-235799-7788-af5cstrA91@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-235799-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-235799-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D235799

--- Comment #1 from Tobias Kortkamp <tobik@freebsd.org> ---
Comment on attachment 202086
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D202086
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.

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-235799-7788-af5cstrA91>