2000-05-19 21:14:20 +00:00
|
|
|
--- libgimp/gimp.c.orig Fri May 12 12:37:27 2000
|
|
|
|
+++ libgimp/gimp.c Thu May 18 16:42:21 2000
|
2000-02-24 07:32:36 +00:00
|
|
|
@@ -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-05-19 21:14:20 +00:00
|
|
|
|
2000-02-24 07:32:36 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
2000-05-19 21:14:20 +00:00
|
|
|
@@ -211,6 +212,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-05-19 21:14:20 +00:00
|
|
|
g_set_prgname (g_basename (progname));
|
|
|
|
|