From owner-svn-ports-head@freebsd.org Thu Oct 1 18:57:43 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2ADC6430C38; Thu, 1 Oct 2020 18:57:43 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C2Mng0857z4Y44; Thu, 1 Oct 2020 18:57:43 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DCDAE1574E; Thu, 1 Oct 2020 18:57:42 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 091IvgkO018810; Thu, 1 Oct 2020 18:57:42 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 091Ivgu5018807; Thu, 1 Oct 2020 18:57:42 GMT (envelope-from se@FreeBSD.org) Message-Id: <202010011857.091Ivgu5018807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Thu, 1 Oct 2020 18:57:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550865 - in head/net-im/icmpchat: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/net-im/icmpchat: . files X-SVN-Commit-Revision: 550865 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2020 18:57:43 -0000 Author: se Date: Thu Oct 1 18:57:41 2020 New Revision: 550865 URL: https://svnweb.freebsd.org/changeset/ports/550865 Log: Fix build with -fno-common While here add dependencies reported as missing by stage-qa. Added: head/net-im/icmpchat/files/ head/net-im/icmpchat/files/patch-sendicmp.c (contents, props changed) head/net-im/icmpchat/files/patch-sendicmp.h (contents, props changed) Modified: head/net-im/icmpchat/Makefile Modified: head/net-im/icmpchat/Makefile ============================================================================== --- head/net-im/icmpchat/Makefile Thu Oct 1 18:52:37 2020 (r550864) +++ head/net-im/icmpchat/Makefile Thu Oct 1 18:57:41 2020 (r550865) @@ -3,6 +3,7 @@ PORTNAME= icmpchat PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= SF Added: head/net-im/icmpchat/files/patch-sendicmp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/icmpchat/files/patch-sendicmp.c Thu Oct 1 18:57:41 2020 (r550865) @@ -0,0 +1,11 @@ +--- sendicmp.c.orig 2003-04-08 10:58:56 UTC ++++ sendicmp.c +@@ -3,6 +3,8 @@ + #include "config.h" + #include "sendicmp.h" + ++struct sockaddr_in saddr; ++ + int + sendpacket(int rawsock, + const unsigned char *text, Added: head/net-im/icmpchat/files/patch-sendicmp.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/icmpchat/files/patch-sendicmp.h Thu Oct 1 18:57:41 2020 (r550865) @@ -0,0 +1,10 @@ +--- sendicmp.h.orig 2003-04-06 16:21:11 UTC ++++ sendicmp.h +@@ -16,6 +16,6 @@ + + int sendpacket(int, const unsigned char *, const char *, int, int); + int in_cksum(u_short *, int); +-struct sockaddr_in saddr; ++extern struct sockaddr_in saddr; + + #endif /* SENDICMP_H */