summaryrefslogtreecommitdiff
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
parentUpdate to version 1.5. (diff)
Update to 2.2.4.2
Notes
Notes: svn path=/head/; revision=48519
-rw-r--r--x11/gdm/Makefile2
-rw-r--r--x11/gdm/distinfo2
-rw-r--r--x11/gdm/files/patch-ar15
-rw-r--r--x11/gdm/files/patch-as14
-rw-r--r--x11/gdm2/Makefile2
-rw-r--r--x11/gdm2/distinfo2
-rw-r--r--x11/gdm2/files/patch-ar15
-rw-r--r--x11/gdm2/files/patch-as14
8 files changed, 4 insertions, 62 deletions
diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile
index cad200b13be9..825c07808cd9 100644
--- a/x11/gdm/Makefile
+++ b/x11/gdm/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gdm
-PORTVERSION= 2.2.4.1
+PORTVERSION= 2.2.4.2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gdm
diff --git a/x11/gdm/distinfo b/x11/gdm/distinfo
index 927ccf39112c..dfdf0ceb0491 100644
--- a/x11/gdm/distinfo
+++ b/x11/gdm/distinfo
@@ -1 +1 @@
-MD5 (gdm-2.2.4.1.tar.gz) = b1ea0aca76480f14ae9eb3175da2a65a
+MD5 (gdm-2.2.4.2.tar.gz) = 5027f44eb3831e036a75d49269905620
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)
diff --git a/x11/gdm2/Makefile b/x11/gdm2/Makefile
index cad200b13be9..825c07808cd9 100644
--- a/x11/gdm2/Makefile
+++ b/x11/gdm2/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gdm
-PORTVERSION= 2.2.4.1
+PORTVERSION= 2.2.4.2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gdm
diff --git a/x11/gdm2/distinfo b/x11/gdm2/distinfo
index 927ccf39112c..dfdf0ceb0491 100644
--- a/x11/gdm2/distinfo
+++ b/x11/gdm2/distinfo
@@ -1 +1 @@
-MD5 (gdm-2.2.4.1.tar.gz) = b1ea0aca76480f14ae9eb3175da2a65a
+MD5 (gdm-2.2.4.2.tar.gz) = 5027f44eb3831e036a75d49269905620
diff --git a/x11/gdm2/files/patch-ar b/x11/gdm2/files/patch-ar
deleted file mode 100644
index cc0de1e8fe55..000000000000
--- a/x11/gdm2/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/gdm2/files/patch-as b/x11/gdm2/files/patch-as
deleted file mode 100644
index cf7db5183e5d..000000000000
--- a/x11/gdm2/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)