Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Apr 2023 23:04:25 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: beea7cf1c87d - main - net-mgmt/send: fix build with -fno-common
Message-ID:  <202304112304.33BN4Pqf071974@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=beea7cf1c87db4ec1a5125d4c1f28da32a0d4c80

commit beea7cf1c87db4ec1a5125d4c1f28da32a0d4c80
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2023-04-11 00:53:25 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2023-04-11 23:02:44 +0000

    net-mgmt/send: fix build with -fno-common
    
    Declare two external variables as extern properly.
    This unbreaks the build on FreeBSD 13+.
    While we are at it, add missing USES=ncurses.
    
    Approved by:    portmgr (build fix blanket)
---
 net-mgmt/send/Makefile                                        |  7 ++-----
 net-mgmt/send/files/patch-libs-libpkixipext-pkixip_ext_gram.y |  9 +++++++++
 net-mgmt/send/files/patch-sendd_params__gram.y                | 11 +++++++++++
 3 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/net-mgmt/send/Makefile b/net-mgmt/send/Makefile
index de0eca556f63..e6f0884a2dfb 100644
--- a/net-mgmt/send/Makefile
+++ b/net-mgmt/send/Makefile
@@ -1,7 +1,7 @@
 PORTNAME=	send
 PORTVERSION=	0.3
 DISTVERSIONPREFIX=	v
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	net-mgmt
 
 MAINTAINER=	hrs@FreeBSD.org
@@ -10,12 +10,9 @@ COMMENT=	Secure Neighbor Discovery implementation for IPv6
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BROKEN_FreeBSD_13=	ld: error: duplicate symbol: params_linecnt
-BROKEN_FreeBSD_14=	ld: error: duplicate symbol: params_linecnt
-
 LIB_DEPENDS=	libdnet.so:net/libdnet
 
-USES=		gmake readline ssl
+USES=		gmake ncurses readline ssl
 USE_GITHUB=	yes
 GH_ACCOUNT=	hrs-allbsd
 USE_RC_SUBR=	sendd
diff --git a/net-mgmt/send/files/patch-libs-libpkixipext-pkixip_ext_gram.y b/net-mgmt/send/files/patch-libs-libpkixipext-pkixip_ext_gram.y
index ed0ac3a3a9b3..ef68ee80da79 100644
--- a/net-mgmt/send/files/patch-libs-libpkixipext-pkixip_ext_gram.y
+++ b/net-mgmt/send/files/patch-libs-libpkixipext-pkixip_ext_gram.y
@@ -1,5 +1,14 @@
 --- libs/libpkixipext/pkixip_ext_gram.y.orig	2019-02-27 16:25:45 UTC
 +++ libs/libpkixipext/pkixip_ext_gram.y
+@@ -42,7 +42,7 @@
+ #include "pkixip_ext.h"
+ #include "pkixip_local.h"
+ 
+-int linecnt;
++extern int linecnt;
+ 
+ extern char *pkixip_text;
+ extern int pkixip_lex(void);
 @@ -350,7 +350,7 @@ new_aor(void)
  
  	if (!ipc->u.addressesOrRanges &&
diff --git a/net-mgmt/send/files/patch-sendd_params__gram.y b/net-mgmt/send/files/patch-sendd_params__gram.y
new file mode 100644
index 000000000000..21547a0d94b1
--- /dev/null
+++ b/net-mgmt/send/files/patch-sendd_params__gram.y
@@ -0,0 +1,11 @@
+--- sendd/params_gram.y.orig	2023-04-11 00:49:19 UTC
++++ sendd/params_gram.y
+@@ -77,7 +77,7 @@ static void yyerror(char *);
+ extern char *params_text;
+ extern int params_lex(void);
+ 
+-int params_linecnt;
++extern int params_linecnt;
+ 
+ static const char *derfile;
+ static const char *keyfile;



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