mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 16:40:31 -04:00
PR: 272730 Reported by: michal.zielonka.8001@gmail.com Approved by: teodorsigaev@gmail.com (maintainer)
20 lines
1.1 KiB
C++
20 lines
1.1 KiB
C++
--- src/slic3r/GUI/Mouse3DController.cpp.orig 2023-07-25 12:02:33 UTC
|
|
+++ src/slic3r/GUI/Mouse3DController.cpp
|
|
@@ -885,7 +885,7 @@ bool Mouse3DController::connect_device()
|
|
|
|
for (const DetectedDevices::value_type& device : detected_devices) {
|
|
if (device.second.size() == 1) {
|
|
-#if defined(__linux__)
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
hid_device* test_device = hid_open(device.first.first, device.first.second, nullptr);
|
|
if (test_device == nullptr) {
|
|
BOOST_LOG_TRIVIAL(error) << "3DConnexion device cannot be opened: " << device.second.front().path <<
|
|
@@ -910,7 +910,7 @@ bool Mouse3DController::connect_device()
|
|
std::cout << "Test device: " << std::hex << device.first.first << std::dec << "/" << std::hex << device.first.second << std::dec << " \"" << data.path << "\"";
|
|
#endif // ENABLE_3DCONNEXION_DEVICES_DEBUG_OUTPUT
|
|
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
hid_device* test_device = hid_open_path(data.path.c_str());
|
|
if (test_device != nullptr) {
|
|
path = data.path;
|