svn commit: r474136 - head/databases/xapian-core10

Tobias Kortkamp tobik at FreeBSD.org
Sat Jul 7 20:43:10 UTC 2018


Author: tobik
Date: Sat Jul  7 20:43:06 2018
New Revision: 474136
URL: https://svnweb.freebsd.org/changeset/ports/474136

Log:
  databases/xapian-core10: Fix build with Clang 6
  
  Too many errors to reasonably patch like
  
  backends/flint/flint_database.cc:813:61: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
                      throw Xapian::InvalidArgumentError("Term too long (> "STRINGIZE(MAX_SAFE_TERM_LENGTH)"): " + tname);
                                                                            ^
  
  http://beefy12.nyi.freebsd.org/data/head-amd64-default/p473790_s335878/logs/xapian-core10-1.0.23_1.log

Modified:
  head/databases/xapian-core10/Makefile

Modified: head/databases/xapian-core10/Makefile
==============================================================================
--- head/databases/xapian-core10/Makefile	Sat Jul  7 20:11:46 2018	(r474135)
+++ head/databases/xapian-core10/Makefile	Sat Jul  7 20:43:06 2018	(r474136)
@@ -21,6 +21,7 @@ BROKEN_mips64=		fails to install: quartz_log.cc:: erro
 CONFLICTS_INSTALL=	xapian-core xapian-core12
 
 USES=		libtool
+USE_CXXSTD=	c++98
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 MAKE_ENV=	INSTALL_STRIP_FLAG=${STRIP}


More information about the svn-ports-all mailing list