Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Mar 2017 00:00:02 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r436516 - in head/sysutils/samesame: . files
Message-ID:  <201703200000.v2K002Af099927@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Mar 20 00:00:02 2017
New Revision: 436516
URL: https://svnweb.freebsd.org/changeset/ports/436516

Log:
  sysutils/samesame: unbreak with clang 4.0
  
  src/mainAction.cpp:184:19: error: ordered comparison between pointer and zero ('FILE *' (aka '__sFILE *') and 'int')
                                  if (pipeLeafs < 0)
                                      ~~~~~~~~~ ^ ~
  src/mainAction.cpp:197:21: error: ordered comparison between pointer and zero ('FILE *' (aka '__sFILE *') and 'int')
                                  if (outputLeafs < 0)
                                      ~~~~~~~~~~~ ^ ~
  
  PR:		216636
  Submitted by:	akruijff@dds.nl
  Approved by:	portmgr blanket

Added:
  head/sysutils/samesame/files/patch-src_mainAction.cpp   (contents, props changed)
Modified:
  head/sysutils/samesame/Makefile   (contents, props changed)

Modified: head/sysutils/samesame/Makefile
==============================================================================
--- head/sysutils/samesame/Makefile	Sun Mar 19 23:58:44 2017	(r436515)
+++ head/sysutils/samesame/Makefile	Mon Mar 20 00:00:02 2017	(r436516)
@@ -3,6 +3,7 @@
 
 PORTNAME=	samesame
 PORTVERSION=	1.10
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://samesame.kruijff.org/ \
 		LOCAL/dhn

Added: head/sysutils/samesame/files/patch-src_mainAction.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/samesame/files/patch-src_mainAction.cpp	Mon Mar 20 00:00:02 2017	(r436516)
@@ -0,0 +1,20 @@
+--- src/mainAction.cpp.orig	2011-09-15 22:31:49 UTC
++++ src/mainAction.cpp
+@@ -181,7 +181,7 @@ int actionProcessOptions(int argc, char 
+ //				strcpy(p, optarg);
+ 				pipeLeafs = popen(optarg, "w");
+ 				setlinebuf(pipeLeafs);
+-				if (pipeLeafs < 0)
++				if (pipeLeafs == NULL)
+ 					warn("coudn't open pipe to: %s\n", optarg);
+ 				else if (outputLeafs)
+ 				{
+@@ -194,7 +194,7 @@ int actionProcessOptions(int argc, char 
+ 					fclose(outputLeafs);
+ 				outputLeafs = fopen(optarg, "w");
+ 				setlinebuf(outputLeafs);
+-				if (outputLeafs < 0)
++				if (outputLeafs == NULL)
+ 					warn("open file: %s\n", optarg);
+ 				else if (pipeLeafs)
+ 				{



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