1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
freebsd-ports/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc
Veniamin Gvozdikov e339f8a956 Update to 1.4.8.
Changelog: https://github.com/basho/riak/blob/1.4/RELEASE-NOTES.md

PR:		ports/188692
Submitted by:	myself
Approved by:	maintainer (timeout)
2014-05-02 09:40:06 +00:00

37 lines
2.4 KiB
C++

--- deps/eleveldb/c_src/leveldb/db/version_set.cc.orig 2014-04-02 12:26:08.746672588 +0000
+++ deps/eleveldb/c_src/leveldb/db/version_set.cc 2014-04-02 12:37:06.719627543 +0000
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
+#define __STDC_CONSTANT_MACROS
#include "db/version_set.h"
#include <algorithm>
#include <stdio.h>
+#include <stdint.h>
#include "db/filename.h"
#include "db/log_reader.h"
#include "db/log_writer.h"
@@ -53,13 +55,13 @@
// WARNING: m_OverlappedFiles flags need to match config::kNumOverlapFiles ... until unified
{
- {10485760, 262144000, 57671680, 209715200, 0, 300000000, true},
- {10485760, 82914560, 57671680, 419430400, 0, 209715200, true},
- {10485760, 314572800, 57671680, 1006632960, 200000000, 314572800, false},
- {10485760, 419430400, 57671680, 4094304000ULL, 3355443200ULL, 419430400, false},
- {10485760, 524288000, 57671680, 41943040000ULL, 33554432000ULL, 524288000, false},
- {10485760, 629145600, 57671680, 419430400000ULL, 335544320000ULL, 629145600, false},
- {10485760, 734003200, 57671680, 4194304000000ULL, 3355443200000ULL, 734003200, false}
+ {UINT64_C(10485760), UINT64_C(262144000), INT64_C(57671680), UINT64_C( 209715200), UINT64_C( 0), UINT64_C(300000000), true},
+ {UINT64_C(10485760), UINT64_C( 82914560), INT64_C(57671680), UINT64_C( 419430400), UINT64_C( 0), UINT64_C(209715200), true},
+ {UINT64_C(10485760), UINT64_C(314572800), INT64_C(57671680), UINT64_C( 1006632960), UINT64_C( 200000000), UINT64_C(314572800), false},
+ {UINT64_C(10485760), UINT64_C(419430400), INT64_C(57671680), UINT64_C( 4094304000), UINT64_C( 3355443200), UINT64_C(419430400), false},
+ {UINT64_C(10485760), UINT64_C(524288000), INT64_C(57671680), UINT64_C( 41943040000), UINT64_C( 33554432000), UINT64_C(524288000), false},
+ {UINT64_C(10485760), UINT64_C(629145600), INT64_C(57671680), UINT64_C( 419430400000), UINT64_C( 335544320000), UINT64_C(629145600), false},
+ {UINT64_C(10485760), UINT64_C(734003200), INT64_C(57671680), UINT64_C(4194304000000), UINT64_C(3355443200000), UINT64_C(734003200), false}
};
/// ULL above needed to compile on OSX 10.7.3