aboutsummaryrefslogtreecommitdiff
path: root/x11/gdm/files
diff options
context:
space:
mode:
authorDmitry Sivachenko <demon@FreeBSD.org>2001-10-07 12:47:53 +0000
committerDmitry Sivachenko <demon@FreeBSD.org>2001-10-07 12:47:53 +0000
commit3ceecc667a165bbce14c0404b7e89f2cfb62a9d1 (patch)
treef3053a0e2b0948084a98b3806d64064bb11cc2f4 /x11/gdm/files
parentdf1936f130ebc7640dc4123be41469321beee474 (diff)
Notes
Diffstat (limited to 'x11/gdm/files')
-rw-r--r--x11/gdm/files/patch-ar15
-rw-r--r--x11/gdm/files/patch-as14
2 files changed, 0 insertions, 29 deletions
diff --git a/x11/gdm/files/patch-ar b/x11/gdm/files/patch-ar
deleted file mode 100644
index cc0de1e8fe55..000000000000
--- a/x11/gdm/files/patch-ar
+++ /dev/null
@@ -1,15 +0,0 @@
---- daemon/gdm-net.c.orig Mon Oct 1 12:37:53 2001
-+++ daemon/gdm-net.c Mon Oct 1 12:37:34 2001
-@@ -156,7 +156,12 @@
- if ( ! conn->writable)
- return FALSE;
-
-+#ifndef __FreeBSD__
- if (send (conn->fd, str, strlen (str), MSG_NOSIGNAL) < 0)
-+#else
-+ /* According to send(2), FreeBSD doesn't return SIGPIPE */
-+ if (send (conn->fd, str, strlen (str), 0) < 0)
-+#endif
- return FALSE;
- else
- return TRUE;
diff --git a/x11/gdm/files/patch-as b/x11/gdm/files/patch-as
deleted file mode 100644
index cf7db5183e5d..000000000000
--- a/x11/gdm/files/patch-as
+++ /dev/null
@@ -1,14 +0,0 @@
---- gui/gdmflexiserver.c.orig Mon Oct 1 12:39:52 2001
-+++ gui/gdmflexiserver.c Mon Oct 1 12:40:08 2001
-@@ -59,7 +59,11 @@
- g_print ("Sending command: '%s'\n", command);
-
- cstr = g_strdup_printf ("%s\n", command);
-+#ifndef __FreeBSD__
- if (send (fd, cstr, strlen (cstr), MSG_NOSIGNAL) < 0)
-+#else
-+ if (send (fd, cstr, strlen (cstr), 0) < 0)
-+#endif
- return NULL;
-
- if ( ! get_response)