diff --git a/pokerth_game.pro b/pokerth_game.pro index a1dff86a..507c2887 100644 --- a/pokerth_game.pro +++ b/pokerth_game.pro @@ -293,7 +293,8 @@ TRANSLATIONS = ts/pokerth_af.ts \ LIBS += -lpokerth_lib \ -lpokerth_db \ -lpokerth_protocol \ - -lcurl + -lcurl \ + -lircclient win32 { DEFINES += CURL_STATICLIB diff --git a/pokerth_lib.pro b/pokerth_lib.pro index df4ce628..8f26e860 100644 --- a/pokerth_lib.pro +++ b/pokerth_lib.pro @@ -27,7 +27,6 @@ INCLUDEPATH += . \ src/engine/local_engine \ src/engine/network_engine \ src/config \ - src/third_party/libircclient/include \ src/third_party/asn1 \ src/core @@ -41,9 +40,6 @@ DEPENDPATH += . \ src/gui/generic \ src/net \ src/core/common \ - src/third_party/libircclient \ - src/third_party/libircclient/src \ - src/third_party/libircclient/include \ src/engine/local_engine \ src/engine/network_engine \ src/net/common \ @@ -104,8 +100,6 @@ HEADERS += \ src/net/downloaderthread.h \ src/net/downloadhelper.h \ src/net/internalchatcleanerpacket.h \ - src/third_party/libircclient/include/libircclient.h \ - src/third_party/libircclient/include/config.h \ src/engine/local_engine/cardsvalue.h \ src/engine/local_engine/localboard.h \ src/engine/local_engine/localenginefactory.h \ @@ -151,7 +145,6 @@ SOURCES += \ src/core/common/crypthelper.cpp \ src/core/common/avatarmanager.cpp \ src/core/common/pokerthexception.cpp \ - src/third_party/libircclient/src/libircclient.c \ src/engine/local_engine/cardsvalue.cpp \ src/engine/local_engine/localboard.cpp \ src/engine/local_engine/localenginefactory.cpp \ diff --git a/pokerth_server.pro b/pokerth_server.pro index 7221a645..5edf750e 100644 --- a/pokerth_server.pro +++ b/pokerth_server.pro @@ -111,7 +111,8 @@ SOURCES += \ LIBS += -lpokerth_lib \ -lpokerth_db \ -lpokerth_protocol \ - -lcurl + -lcurl \ + -lircclient win32 { DEFINES += CURL_STATICLIB diff --git a/src/net/common/ircthread.cpp b/src/net/common/ircthread.cpp index 926beccc..cd00ddd7 100644 --- a/src/net/common/ircthread.cpp +++ b/src/net/common/ircthread.cpp @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include