Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 Aug 2020 05:49:42 +0000 (UTC)
From:      Greg Lehey <grog@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547150 - in head/x11/xtset: . files
Message-ID:  <202008310549.07V5ngsP052150@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: grog
Date: Mon Aug 31 05:49:41 2020
New Revision: 547150
URL: https://svnweb.freebsd.org/changeset/ports/547150

Log:
  Add patches for politically correct syntax, silencing warnings.
  
  PR:		249017
  Submitted by:	freebsd@dreamchaser.org
  Reported by:	freebsd@dreamchaser.org

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

Modified: head/x11/xtset/Makefile
==============================================================================
--- head/x11/xtset/Makefile	Mon Aug 31 05:19:39 2020	(r547149)
+++ head/x11/xtset/Makefile	Mon Aug 31 05:49:41 2020	(r547150)
@@ -4,12 +4,12 @@
 PORTNAME=	xtset
 PORTVERSION=	1.1
 CATEGORIES=	x11
-MASTER_SITES=	ftp://ftp.lemis.com/pub/
+MASTER_SITES=	http://www.lemis.com/pub/
 
 MAINTAINER=	grog@FreeBSD.org
 COMMENT=	Utility to set title on an xterm
 
-LICENSE=	NONE
+# LICENSE=	NONE
 
 NO_WRKSUBDIR=	yes
 

Modified: head/x11/xtset/distinfo
==============================================================================
--- head/x11/xtset/distinfo	Mon Aug 31 05:19:39 2020	(r547149)
+++ head/x11/xtset/distinfo	Mon Aug 31 05:49:41 2020	(r547150)
@@ -1,2 +1,3 @@
+TIMESTAMP = 1598851253
 SHA256 (xtset-1.1.tar.gz) = e507a3e31a693419fd0a760b392f6370299cdaba37c419b09f165771ae73ba5d
 SIZE (xtset-1.1.tar.gz) = 4310

Added: head/x11/xtset/files/patch-xtset.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/xtset/files/patch-xtset.c	Mon Aug 31 05:49:41 2020	(r547150)
@@ -0,0 +1,44 @@
+--- xtset.c.orig	2002-03-29 22:15:00.000000000 +1100
++++ xtset.c	2020-08-31 15:29:45.583899000 +1000
+@@ -49,6 +49,7 @@
+ #include <pwd.h>
+ #include <grp.h>
+ #include <sys/param.h>
++#include <sys/stat.h>
+ 
+ /* SVR3 header files frequently don't define MAXPATHLEN. They probably can't
+  * stomach a 1K path name, either, but this constant can err on the generous
+@@ -135,21 +136,21 @@
+ 
+   /* then the effective username */
+ 
+-  if (pwent = getpwuid (geteuid ()))
++  if ((pwent = getpwuid (geteuid ())) != 0)
+     eff_userid = strdup (pwent->pw_name);
+   else
+     eff_userid = "*no euid*";
+ 
+   /* then the real groupname */
+ 
+-  if (grent = getgrgid (getgid ()))
++  if ((grent = getgrgid (getgid ())) != 0)
+     real_groupid = strdup (grent->gr_name);
+   else
+     real_groupid = "*no gid*";			    /* yes, this can be valid */
+   
+   /* then the effective groupname */
+   
+-  if (grent = getgrgid (getegid ()))
++  if ((grent = getgrgid (getegid ())) != 0)
+     eff_groupid = strdup (grent->gr_name);
+   else
+     eff_groupid = "*no egid*";			    /* yes, this can be valid */
+@@ -163,7 +164,7 @@
+     {
+     char *point;
+     strcpy (short_host, our_host);
+-    if (point = strchr (short_host, '.'))		    /* got a point, */
++    if ((point = strchr (short_host, '.')) != 0)	    /* got a point, */
+       *point = '\0';					    /* chop it off there */
+     }
+   if ( !getcwd (our_dir, MAXPATHLEN))			    /* or can't get wd */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008310549.07V5ngsP052150>