svn commit: r375690 - in head/x11/eterm: . files

Jimmy Olgeni olgeni at FreeBSD.org
Sat Dec 27 18:54:36 UTC 2014


Author: olgeni
Date: Sat Dec 27 18:54:35 2014
New Revision: 375690
URL: https://svnweb.freebsd.org/changeset/ports/375690
QAT: https://qat.redports.org/buildarchive/r375690/

Log:
  Fix infinite loop at startup when _SC_OPEN_MAX > 64k.

Added:
  head/x11/eterm/files/patch-src_command.c   (contents, props changed)
Modified:
  head/x11/eterm/Makefile

Modified: head/x11/eterm/Makefile
==============================================================================
--- head/x11/eterm/Makefile	Sat Dec 27 17:53:10 2014	(r375689)
+++ head/x11/eterm/Makefile	Sat Dec 27 18:54:35 2014	(r375690)
@@ -3,7 +3,7 @@
 
 PORTNAME=	eterm
 PORTVERSION=	0.9.6
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES+=	x11
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/Eterm-${PORTVERSION}
 DISTNAME=	Eterm-${PORTVERSION}

Added: head/x11/eterm/files/patch-src_command.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/eterm/files/patch-src_command.c	Sat Dec 27 18:54:35 2014	(r375690)
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- src/command.c.orig
++++ src/command.c
+@@ -1561,7 +1561,7 @@
+      * child processes remain alive upon deletion of the window.
+      */
+     {
+-        unsigned short i;
++        unsigned long i;
+         unsigned long max_fds;
+ 
+         /* get number of available file descriptors */


More information about the svn-ports-head mailing list