Don't install signal handler for SIGPIPE in windows

This commit is contained in:
Paul Davis 2013-07-11 22:34:59 -04:00
parent f3858b1932
commit e4ab2ffbfb
1 changed files with 2 additions and 0 deletions

View File

@ -516,9 +516,11 @@ int main (int argc, char *argv[])
PBD::ID::init ();
#ifndef WIN32
if (::signal (SIGPIPE, sigpipe_handler)) {
cerr << _("Cannot xinstall SIGPIPE error handler") << endl;
}
#endif
try {
ui = new ARDOUR_UI (&argc, &argv, localedir);