mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
- Compilation fix for MinGW
This commit is contained in:
parent
cf694d14f3
commit
5d2d1dfa94
1 changed files with 5 additions and 1 deletions
|
@ -35,7 +35,11 @@ using namespace std;
|
|||
|
||||
// P2B Stuff
|
||||
#include <string.h>
|
||||
#include <arpa/inet.h>
|
||||
#ifdef Q_WS_WIN
|
||||
#include <Winsock2.h>
|
||||
#else
|
||||
#include <arpa/inet.h>
|
||||
#endif
|
||||
// End of P2B stuff
|
||||
|
||||
class FilterParserThread : public QThread {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue