blob: cd695da587e120b6a3afd3f494bf6bb2183f312a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Why is this patch needed?
--- libgimp/gimp.c.orig 2018-03-25 14:35:18.000000000 +0200
+++ libgimp/gimp.c 2018-04-14 18:55:00.422346000 +0200
@@ -28,6 +28,7 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
+#include <floatingpoint.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
@@ -425,6 +426,9 @@ gimp_main (const GimpPlugInInfo *info,
gimp_env_init (TRUE);
progname = argv[ARG_PROGNAME];
+
+ /* Ignore floating point exceptions */
+ fpsetmask(0);
basename = g_path_get_basename (progname);
|