Skip to content

Commit

Permalink
Fix compile on FreeBSD with spnav
Browse files Browse the repository at this point in the history
If spnav is installed on a FreeBSD system, it will be detected,
but the build will fail.  With this change, it both builds
successfully and works on FreeBSD.
  • Loading branch information
RealDeuce authored and wwmayer committed Dec 1, 2024
1 parent be3ad26 commit a8ecf5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gui/GuiApplicationNativeEventAware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@


#if defined(_USE_3DCONNEXION_SDK) || defined(SPNAV_FOUND)
#if defined(Q_OS_LINUX)
#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
#if defined(SPNAV_USE_X11)
#include "3Dconnexion/GuiNativeEventLinuxX11.h"
#else
Expand Down

0 comments on commit a8ecf5c

Please sign in to comment.