svn commit: r475493 - head/www/swish++

Tobias Kortkamp tobik at FreeBSD.org
Sat Jul 28 06:09:32 UTC 2018


Author: tobik
Date: Sat Jul 28 06:09:31 2018
New Revision: 475493
URL: https://svnweb.freebsd.org/changeset/ports/475493

Log:
  www/swish++: Fix build with Clang 6
  
  option_stream.c:272:14: error: assigning to 'char *' from incompatible type 'char'
      o.arg_ = '\0';
               ^~~~
  option_stream.c:286:30: warning: '/*' within block comment [-Wcomment]
  /*#define TEST_OPTION_STREAM /**/
                               ^
  
  http://beefy12.nyi.freebsd.org/data/head-amd64-default/p475044_s336572/logs/swish++-6.1.5_3.log
  
  - While here deprecate it. Upstream development seems to be pretty dead.

Modified:
  head/www/swish++/Makefile

Modified: head/www/swish++/Makefile
==============================================================================
--- head/www/swish++/Makefile	Sat Jul 28 05:58:22 2018	(r475492)
+++ head/www/swish++/Makefile	Sat Jul 28 06:09:31 2018	(r475493)
@@ -13,9 +13,13 @@ COMMENT=	Simple Web Indexing System for Humans: C++ ve
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/Copying
 
+DEPRECATED=	Unmaintained upstream
+EXPIRATION_DATE=	2018-10-15
+
 RUN_DEPENDS=	wget:ftp/wget
 
 USES=		gmake perl5 shebangfix
+USE_CXXSTD=	c++98
 SHEBANG_FILES=	scripts/searchc.in scripts/splitmail.in scripts/httpindex.in
 perl_OLD_CMD=	%%PERL%%
 MAKEFILE=	GNUmakefile


More information about the svn-ports-all mailing list