svn commit: r550865 - in head/net-im/icmpchat: . files

Stefan Eßer se at FreeBSD.org
Thu Oct 1 18:57:43 UTC 2020


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 */


More information about the svn-ports-all mailing list