diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 2000-01-01 23:21:12 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 2000-01-01 23:21:12 +0000 |
commit | 06562ff9c54f74d971e676ba1a9bbd2321054428 (patch) | |
tree | 36ebaf6cf2245f18616bbd1c9fb53cf439b57808 /math/geg/files | |
parent | KDreamsite is another GUI WYSIWYG HTML editor that is still (diff) |
Work around division by zero coredumps
PR: 15823
Submitted by: maintainer
Diffstat (limited to 'math/geg/files')
-rw-r--r-- | math/geg/files/patch-ab | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/math/geg/files/patch-ab b/math/geg/files/patch-ab new file mode 100644 index 000000000000..0ef71c1e2436 --- /dev/null +++ b/math/geg/files/patch-ab @@ -0,0 +1,16 @@ +--- src/main.c.orig Sat Jan 1 20:35:47 2000 ++++ src/main.c Sat Jan 1 20:36:14 2000 +@@ -10,10 +10,13 @@ + #include "app.h" + #include <gtk/gtk.h> + #include <stdio.h> ++#include <ieeefp.h> + + int + main(int argc, char *argv[]) + { ++ fpsetmask(0); ++ + parse_command_line(argc, argv); + parse_rcfile(); + |