mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-06 23:52:31 -06:00
Fix compilation on Mac OS
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- BUGFIX: Fix a race condition in folder scanning and torrent downloader
|
- BUGFIX: Fix a race condition in folder scanning and torrent downloader
|
||||||
- BUGFIX: Hide download url column in search results
|
- BUGFIX: Hide download url column in search results
|
||||||
- BUGFIX: Fix a crash when scanned directory does not exist
|
- BUGFIX: Fix a crash when scanned directory does not exist
|
||||||
|
- BUGFIX: Fix compilation on Mac OS
|
||||||
|
|
||||||
* Sun Sep 20 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.2
|
* Sun Sep 20 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.2
|
||||||
- BUGFIX: Some torrents were pausing for no reason
|
- BUGFIX: Some torrents were pausing for no reason
|
||||||
|
|||||||
@@ -43,9 +43,14 @@
|
|||||||
#include <QThread>
|
#include <QThread>
|
||||||
|
|
||||||
#ifndef Q_WS_WIN
|
#ifndef Q_WS_WIN
|
||||||
#include <sys/vfs.h>
|
#ifdef Q_WS_MAC
|
||||||
|
#include <sys/param.h>
|
||||||
|
#include <sys/mount.h>
|
||||||
#else
|
#else
|
||||||
#include <winbase.h>
|
#include <sys/vfs.h>
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#include <winbase.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <libtorrent/torrent_info.hpp>
|
#include <libtorrent/torrent_info.hpp>
|
||||||
|
|||||||
Reference in New Issue
Block a user