svn commit: r568644 - head/www/vger
Mark Linimon
linimon at FreeBSD.org
Wed Mar 17 11:29:00 UTC 2021
Author: linimon
Date: Wed Mar 17 11:28:59 2021
New Revision: 568644
URL: https://svnweb.freebsd.org/changeset/ports/568644
Log:
Add USE_CSTD=c99 to fix build on GCC-based systems:
main.c:58: error: 'for' loop initial declaration used outside C99 mode
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Modified:
head/www/vger/Makefile
head/www/vger/pkg-descr
Modified: head/www/vger/Makefile
==============================================================================
--- head/www/vger/Makefile Wed Mar 17 11:25:51 2021 (r568643)
+++ head/www/vger/Makefile Wed Mar 17 11:28:59 2021 (r568644)
@@ -9,9 +9,12 @@ DISTFILES= 365e99400a8a13546c4c060f28e23bf81d68d45e.ta
MAINTAINER= nc at FreeBSD.org
COMMENT= Simplistic and secure Gemini server
+
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
+USE_CSTD= c99
+
WRKSRC= ${WRKDIR}/${PORTNAME}
do-install:
@@ -22,4 +25,3 @@ post-install:
@${MKDIR} ${STAGEDIR}${ETCDIR}/gemini
.include <bsd.port.mk>
-
Modified: head/www/vger/pkg-descr
==============================================================================
--- head/www/vger/pkg-descr Wed Mar 17 11:25:51 2021 (r568643)
+++ head/www/vger/pkg-descr Wed Mar 17 11:28:59 2021 (r568644)
@@ -5,4 +5,4 @@ Vger design is relying on inetd and a daemon to take c
to delegate TLS and network to daemons which proved doing it correctly, so vger
takes its request from stdin and output the result to stdout.
-https://tildegit.org/solene/vger
+WWW: https://tildegit.org/solene/vger
More information about the svn-ports-all
mailing list