diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-11-08 07:20:22 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-11-08 07:20:22 +0800 |
commit | ecc692c609745ed2590ee410fcf60f8fc5577767 (patch) | |
tree | 804fc05006975ef53fbc334db1f4ffa42ff9359f /devel/libgtop2/files/patch-lib::read.c | |
parent | 3a142666db7f6854784739853cd212ba74b8b6bd (diff) | |
download | marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.gz marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.zst marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.zip |
Remove these ports now that they have been merged into the ports tree.
Next stop, GNOME 2.9!
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3045 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/libgtop2/files/patch-lib::read.c')
-rw-r--r-- | devel/libgtop2/files/patch-lib::read.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/devel/libgtop2/files/patch-lib::read.c b/devel/libgtop2/files/patch-lib::read.c deleted file mode 100644 index 53d091a32..000000000 --- a/devel/libgtop2/files/patch-lib::read.c +++ /dev/null @@ -1,30 +0,0 @@ ---- lib/read.c.orig Fri Jun 18 04:03:55 2004 -+++ lib/read.c Sat Aug 7 16:05:41 2004 -@@ -22,6 +22,7 @@ - */ - - #include <config.h> -+#include <errno.h> - #include <glibtop/read.h> - #include "libgtop-i18n.h" - -@@ -56,14 +57,18 @@ - fprintf (stderr, "LIBRARY: really reading %d bytes.\n", size); - #endif - -+retry: - if (server->socket) { - do_read (server->socket, buf, size); - } else { -- if(read (server->input [0], buf, size) < 0) -+ if(read (server->input [0], buf, size) < 0) { -+ if (errno == EINTR) -+ goto retry; - glibtop_error_io_r ( - server, - ngettext ("read %d byte", - "read %d bytes", size), - size); -+ } - } - } |