diff options
author | Gleb Popov <arrowd@FreeBSD.org> | 2025-06-07 13:50:48 +0300 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2025-07-07 14:26:37 +0300 |
commit | fb6ad39e0c79608486cf3a00cadd38bee3bdb56f (patch) | |
tree | 9d01c69d957eff206a6b0f517fbf9c9ea3ce6844 /devel/qt6-base/files | |
parent | devel/glib20: Prepare for the native inotify impl (diff) |
devel/qt6-base: Prepare for the native inotify impl
Differential Revision: https://reviews.freebsd.org/D50736
Diffstat (limited to 'devel/qt6-base/files')
-rw-r--r-- | devel/qt6-base/files/extrapatch-inotify | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/qt6-base/files/extrapatch-inotify b/devel/qt6-base/files/extrapatch-inotify new file mode 100644 index 000000000000..15106c6c721b --- /dev/null +++ b/devel/qt6-base/files/extrapatch-inotify @@ -0,0 +1,11 @@ +--- src/corelib/io/qfilesystemwatcher.cpp.orig 2025-02-13 17:45:28 UTC ++++ src/corelib/io/qfilesystemwatcher.cpp +@@ -11,7 +11,7 @@ + #include <qset.h> + #include <qtimer.h> + +-#if (defined(Q_OS_LINUX) || defined(Q_OS_QNX)) && QT_CONFIG(inotify) ++#if (defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD)) && QT_CONFIG(inotify) + #define USE_INOTIFY + #endif + |