2000-02-24 07:32:36 +00:00
|
|
|
--- libgimp/gimp.c.orig Mon Dec 6 14:44:39 1999
|
|
|
|
+++ libgimp/gimp.c Sat Feb 19 13:51:36 2000
|
|
|
|
@@ -26,6 +26,7 @@
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
1998-05-19 03:16:48 +00:00
|
|
|
+#include <floatingpoint.h>
|
2000-02-24 07:32:36 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
@@ -186,6 +187,9 @@
|
1998-05-19 03:16:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
progname = argv[0];
|
|
|
|
+
|
2000-02-24 07:32:36 +00:00
|
|
|
+ /* Ignore floating point exceptions */
|
1998-05-19 03:16:48 +00:00
|
|
|
+ fpsetmask(0);
|
|
|
|
|
2000-02-24 07:32:36 +00:00
|
|
|
#ifndef G_OS_WIN32
|
|
|
|
/* No use catching these on Win32, the user won't get any meaningful
|