Skip to content
Snippets Groups Projects
Commit 270160c3 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

temp compile fix for sgi irix

parent 334c5fb9
No related branches found
No related tags found
No related merge requests found
// $Id: Main.cpp,v 1.49 2005-05-21 04:55:59 geuzaine Exp $
// $Id: Main.cpp,v 1.50 2005-06-20 16:40:25 geuzaine Exp $
//
// Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
//
......@@ -93,9 +93,12 @@ int main(int argc, char *argv[])
Init_Mesh0(&M);
// FIXME: could not make this work on IRIX
#if !defined(__sgi__)
signal(SIGINT, Signal);
signal(SIGSEGV, Signal);
signal(SIGFPE, Signal);
#endif
GMSH_PluginManager::instance()->registerDefaultPlugins();
......
// $Id: Main.cpp,v 1.79 2005-06-10 00:31:28 geuzaine Exp $
// $Id: Main.cpp,v 1.80 2005-06-20 16:40:25 geuzaine Exp $
//
// Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
//
......@@ -95,9 +95,12 @@ int main(int argc, char *argv[])
// Signal handling
// FIXME: could not make this work on IRIX
#if !defined(__sgi__)
signal(SIGINT, Signal);
signal(SIGSEGV, Signal);
signal(SIGFPE, Signal);
#endif
// Initialize the default plugins
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment