diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 1998-10-19 14:42:14 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 1998-10-19 14:42:14 +0000 |
commit | e1a7bd5faddd6c70cb5ca719bd6230ff117d542d (patch) | |
tree | d3ad9e31ca5439cdbac767e51ad0134e20460bb1 /sysutils/gnomesystemmonitor | |
parent | c5149bcc2347afdbd877d3563da477037eaf0618 (diff) | |
download | ports-e1a7bd5faddd6c70cb5ca719bd6230ff117d542d.tar.gz ports-e1a7bd5faddd6c70cb5ca719bd6230ff117d542d.zip |
Add a patch from maintainer.
PR: ports/8273
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=14077
Diffstat (limited to 'sysutils/gnomesystemmonitor')
-rw-r--r-- | sysutils/gnomesystemmonitor/files/patch-ad | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sysutils/gnomesystemmonitor/files/patch-ad b/sysutils/gnomesystemmonitor/files/patch-ad new file mode 100644 index 000000000000..dae8865cf55e --- /dev/null +++ b/sysutils/gnomesystemmonitor/files/patch-ad @@ -0,0 +1,40 @@ +--- main.c.orig Sun Sep 27 22:47:58 1998 ++++ main.c Wed Oct 14 02:36:27 1998 +@@ -2,7 +2,7 @@ + + /* + * gtop - gnome system monitor + * Copyright (C) 1997,98 Radek Doulík + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by +@@ -31,6 +31,8 @@ + + #include <gnome.h> + ++#include <floatingpoint.h> ++ + GtkWidget *window; + GtkWidget *notebook; + GtkNotebookPage *offPage; +@@ -273,8 +275,11 @@ + int + main (int argc, char *argv[]) + { ++ + GnomeClient *client; + ++ fpsetmask(fpgetmask() & ~(FP_X_DZ|FP_X_INV)); ++ + argp_program_version = VERSION; + + bindtextdomain (PACKAGE, GNOMELOCALEDIR); +@@ -363,5 +368,8 @@ + /* enter gtk main */ + gtk_main (); + ++ fpresetsticky(FP_X_DZ|FP_X_INV); ++ fpsetmask(FP_X_DZ|FP_X_INV); ++ + return 0; + } |