https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240964
--- Comment #7 from Walter Schwarzenfeld <[email protected]> --- (In reply to Anders Bolt-Evensen from comment #2) It was not meant as workaround (it is wrong). If I am right, this should the correct way: --- src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp.orig 2019-10-01 18:04:32 UTC +++ src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp @@ -38,6 +38,12 @@ ** ****************************************************************************/ +#ifdef Q_OS_FREEBSD +#include <dev/evdev/input.h> +#else +#include <linux/input.h> +#endif + #include "qevdevtouchhandler_p.h" #include "qtouchoutputmapping_p.h" #include <QStringList> @@ -49,11 +55,6 @@ #include <QtCore/private/qcore_unix_p.h> #include <QtGui/private/qhighdpiscaling_p.h> #include <QtGui/private/qguiapplication_p.h> -#ifdef Q_OS_FREEBSD -#include <dev/evdev/input.h> -#else -#include <linux/input.h> -#endif #include <math.h> -- You are receiving this mail because: You are the assignee for the bug.
