Remove setsockopt for SIGPIPE; disable SIGPIPE via signal() on non-WIN32

This commit is contained in:
Palana
2014-04-24 23:50:40 +02:00
parent 138bf4cc1e
commit 07ab8271b6
2 changed files with 6 additions and 2 deletions

View File

@@ -31,6 +31,8 @@
#ifdef _WIN32
#include <fstream>
#include <windows.h>
#else
#include <signal.h>
#endif
using namespace std;
@@ -217,6 +219,10 @@ struct NoFocusFrameStyle : QProxyStyle
int main(int argc, char *argv[])
{
#ifndef WIN32
signal(SIGPIPE, SIG_IGN);
#endif
int ret = -1;
QCoreApplication::addLibraryPath(".");
#ifdef _WIN32