Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2020 18:57:42 +0000 (UTC)
From:      =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org>
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
Message-ID:  <202010011857.091Ivgu5018807@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



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