diff options
author | krion <krion@FreeBSD.org> | 2005-02-01 06:45:05 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2005-02-01 06:45:05 +0800 |
commit | 9d45184ddae5245a756bc0a589bd37a8784dd505 (patch) | |
tree | 3d2b9511cc9739678a089d88d8ad4f582f944763 /net/gsk/files | |
parent | 3cf096ecbe8d3ae125bd3ed8bcd2453b70677540 (diff) | |
download | freebsd-ports-gnome-9d45184ddae5245a756bc0a589bd37a8784dd505.tar.gz freebsd-ports-gnome-9d45184ddae5245a756bc0a589bd37a8784dd505.tar.zst freebsd-ports-gnome-9d45184ddae5245a756bc0a589bd37a8784dd505.zip |
Update to version 1.0.4
PR: ports/76901
Submitted by: Ports Fury
Diffstat (limited to 'net/gsk/files')
-rw-r--r-- | net/gsk/files/patch-configure | 36 | ||||
-rw-r--r-- | net/gsk/files/patch-src::gskhook.c | 17 | ||||
-rw-r--r-- | net/gsk/files/patch-src::gskipv4.c | 10 | ||||
-rw-r--r-- | net/gsk/files/patch-src::tests::name-resolver.c | 12 |
4 files changed, 75 insertions, 0 deletions
diff --git a/net/gsk/files/patch-configure b/net/gsk/files/patch-configure new file mode 100644 index 000000000000..3df290c7c12e --- /dev/null +++ b/net/gsk/files/patch-configure @@ -0,0 +1,36 @@ +--- configure.orig Tue Jan 25 08:33:21 2005 ++++ configure Mon Jan 31 00:45:09 2005 +@@ -2947,6 +2947,7 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ ++#include <sys/types.h> + #include <sys/socket.h> + int + main () +@@ -3007,8 +3008,8 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ +-#include <sys/socket.h> + #include <sys/types.h> ++#include <sys/socket.h> + int + main () + { +@@ -3064,6 +3065,7 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ ++#include <sys/types.h> + #include <sys/socket.h> + int + main () +@@ -3122,6 +3124,7 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ ++#include <sys/types.h> + #include <sys/socket.h> + int + main () diff --git a/net/gsk/files/patch-src::gskhook.c b/net/gsk/files/patch-src::gskhook.c new file mode 100644 index 000000000000..3b7f5ce0131f --- /dev/null +++ b/net/gsk/files/patch-src::gskhook.c @@ -0,0 +1,17 @@ +--- src/gskhook.c.orig Sat Dec 11 07:30:36 2004 ++++ src/gskhook.c Sun Jan 30 23:53:21 2005 +@@ -121,12 +121,12 @@ + static inline void + gsk_hook_add_to_nonblocking_list (GskHook *hook) + { ++ GskMainLoop *loop = gsk_main_loop_default (); ++ NBThreadData *data = main_loop_force_nonblocking_data (loop); + { /* A Test TED*/ + GObject *object = GSK_HOOK_GET_OBJECT(hook); + (void)object; + } +- GskMainLoop *loop = gsk_main_loop_default (); +- NBThreadData *data = main_loop_force_nonblocking_data (loop); + gsk_tree_insert (data->hook_tree, hook, hook); + verify_nonblocking_data_has_source (data, loop); + } diff --git a/net/gsk/files/patch-src::gskipv4.c b/net/gsk/files/patch-src::gskipv4.c new file mode 100644 index 000000000000..3c2fd39f96ef --- /dev/null +++ b/net/gsk/files/patch-src::gskipv4.c @@ -0,0 +1,10 @@ +--- src/gskipv4.c.orig Tue Dec 7 06:53:22 2004 ++++ src/gskipv4.c Sun Jan 30 23:55:09 2005 +@@ -1,5 +1,7 @@ + #include <string.h> + #include <stdlib.h> ++#include <sys/types.h> ++#include <sys/socket.h> + #include <netinet/in.h> + #include "gskipv4.h" + diff --git a/net/gsk/files/patch-src::tests::name-resolver.c b/net/gsk/files/patch-src::tests::name-resolver.c new file mode 100644 index 000000000000..4d178874a8a3 --- /dev/null +++ b/net/gsk/files/patch-src::tests::name-resolver.c @@ -0,0 +1,12 @@ +--- src/tests/name-resolver.c.orig Sat Dec 11 00:55:44 2004 ++++ src/tests/name-resolver.c Mon Jan 31 00:49:15 2005 +@@ -38,8 +38,8 @@ + { + GskNameResolverFamily family; + GskNameResolverTask *task; +- gsk_init (&argc, &argv, NULL); + guint i; ++ gsk_init (&argc, &argv, NULL); + + if (argc != 3) + g_error ("%s requires exactly 2 arguments, family and name", argv[0]); |