Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Aug 2018 13:55:34 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478317 - head/www/bookmarkbridge
Message-ID:  <201808281355.w7SDtYRg058787@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Tue Aug 28 13:55:34 2018
New Revision: 478317
URL: https://svnweb.freebsd.org/changeset/ports/478317

Log:
  www/bookmarkbridge: Fix build with Clang 6
  
  xbelwrite.cpp:90:7: error: declaration of variable 'QString' with deduced type 'auto' requires an initializer
          auto    QString tempstr;
                  ^
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/bookmarkbridge-0.76_6.log
  
  - Deprecate it.  It is doubtful this works correctly with modern
    browsers anymore.

Modified:
  head/www/bookmarkbridge/Makefile

Modified: head/www/bookmarkbridge/Makefile
==============================================================================
--- head/www/bookmarkbridge/Makefile	Tue Aug 28 13:48:01 2018	(r478316)
+++ head/www/bookmarkbridge/Makefile	Tue Aug 28 13:55:34 2018	(r478317)
@@ -13,7 +13,11 @@ COMMENT=	Synchronize bookmarks between multiple browse
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+DEPRECATED=	Unmaintained. Unlikely to work correctly with modern browsers
+EXPIRATION_DATE=	2018-09-15
+
 USES=		autoreconf gmake perl5 pkgconfig qt:4 shebangfix
+USE_CXXSTD=	gnu++98
 SHEBANG_FILES=	bookmarkbridge/docs/autodocs.pl
 USE_XORG=	x11 ice xext
 USE_QT=		corelib gui qt3support moc_build rcc_build uic_build



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