- Depend on the latest version of xview-config - Mark as LICENSE sun-openlook-license - Bump pkgrevision
25 lines
822 B
Text
25 lines
822 B
Text
$NetBSD: patch-aq,v 1.3 2009/12/10 20:35:56 abs Exp $
|
|
|
|
--- lib/libxview/sel/sel_agent.c.orig 1994-06-26 18:46:20.000000000 +0000
|
|
+++ lib/libxview/sel/sel_agent.c
|
|
@@ -63,7 +63,7 @@ static Seln_result seln_do_request_from_
|
|
static void selection_agent_do_function();
|
|
static Atom get_atom();
|
|
static Seln_attribute save_atom();
|
|
-
|
|
+static int waitforReadableTimeout();
|
|
|
|
Xv_private Seln_result seln_convert_request_to_property();
|
|
/* called by seln_svc.c
|
|
@@ -309,7 +309,11 @@ seln_do_request_from_file(attr, context,
|
|
struct stat stat_buf;
|
|
int count, size;
|
|
char *destp;
|
|
+#if (defined(BSD) && (BSD >= 199306))
|
|
+ extern off_t lseek();
|
|
+#else
|
|
extern long lseek();
|
|
+#endif
|
|
|
|
if (fstat(fd, &stat_buf) != 0) {
|
|
perror(XV_MSG("Agent couldn't reply about a file"));
|