Commit graph

5 commits

Author SHA1 Message Date
Tobias Kortkamp
fd4528a7ce databases/dbtool: Unbreak with Clang 6
engine.cc:539:46: error: non-constant-expression cannot be narrowed from type
      'std::__1::basic_string<char, std::__1::char_traits<char>,
      std::__1::allocator<char> >::size_type' (aka 'unsigned long') to 'int' in
      initializer list [-Wc++11-narrowing]
  datum key   = {(char *)config.key.c_str(), config.key.length()};
                                             ^~~~~~~~~~~~~~~~~~~
engine.cc:539:46: note: insert an explicit cast to silence this issue
  datum key   = {(char *)config.key.c_str(), config.key.length()};
                                             ^~~~~~~~~~~~~~~~~~~
                                             static_cast<int>(  )

http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/dbtool-1.9.1.log
2018-06-17 19:06:51 +00:00
Pawel Pekala
84e539d876 - Update to version 1.9.1
- Add LICENSE_FILE
- Convert to USES=shebangfix, option helpers, PLIST_FILES

PR:		203242
Submitted by:	tkato432@yahoo.com
2015-10-16 19:09:52 +00:00
Marcelo Araujo
533cbb7a01 - Update to 1.7.
- Pass maintainer to submitter.

PR:		ports/136074
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
2009-06-30 17:46:25 +00:00
Tilman Keskinoz
e129981198 Fix build with gcc41 2006-12-21 13:49:57 +00:00
Edwin Groothuis
293e656167 databases/dbtool: upgrading to 1.6 and fixing on -CURRENT.
PR:		ports/50213
Submitted by:	Thierry Thomas <thierry@pompo.net>
2003-03-30 03:40:04 +00:00