diff options
author | tobik <tobik@FreeBSD.org> | 2018-07-08 04:43:06 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2018-07-08 04:43:06 +0800 |
commit | 1624f5b3c5b4ba8f3ce01cd517e73fc4ee635c94 (patch) | |
tree | b83220e75cabd03fe5cb9da38eecd3f88dc4fd43 /databases | |
parent | 0985b32b2cd6f3715e198b32e76cd127916ecab9 (diff) | |
download | freebsd-ports-gnome-1624f5b3c5b4ba8f3ce01cd517e73fc4ee635c94.tar.gz freebsd-ports-gnome-1624f5b3c5b4ba8f3ce01cd517e73fc4ee635c94.tar.zst freebsd-ports-gnome-1624f5b3c5b4ba8f3ce01cd517e73fc4ee635c94.zip |
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
Diffstat (limited to 'databases')
-rw-r--r-- | databases/xapian-core10/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/databases/xapian-core10/Makefile b/databases/xapian-core10/Makefile index 906d2af029ae..d38534d9361c 100644 --- a/databases/xapian-core10/Makefile +++ b/databases/xapian-core10/Makefile @@ -21,6 +21,7 @@ BROKEN_mips64= fails to install: quartz_log.cc:: error: call to 'om_tostring' i CONFLICTS_INSTALL= xapian-core xapian-core12 USES= libtool +USE_CXXSTD= c++98 GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP} |