- 24 Jul, 2017 3 commits
-
-
Yilun Chong authored
Proto2 test message support to conformance test
-
Feng Xiao authored
Windows: support long paths in open/mkdir/access
-
Adam Cozzette authored
CMake: Install .pc Files
-
- 23 Jul, 2017 2 commits
-
-
Axel Huebl authored
Exclude the unconfigured .pc input files of the CMake based install: they shall not be packed/distributed, only their outputs are
-
Axel Huebl authored
Adds pkg-config (`.pc`) files for CMake based installs.
-
- 21 Jul, 2017 2 commits
-
-
Adam Cozzette authored
Updated outdated hyperlink
-
Arnold Schrijver authored
Github repo had moved, pointing to correct location.
-
- 20 Jul, 2017 2 commits
-
-
Feng Xiao authored
Fix typos in comment
-
Adam Cozzette authored
Fixed default instance initialization for C++ lite
-
- 19 Jul, 2017 4 commits
-
-
Jie Luo authored
Make it compatible with python 3.6.1
-
Adam Cozzette authored
An ifdef condition seems to have been inverted by mistake, causing the dynamic initialization to occur for lite if and only if the _NO_STATIC_INITIALIZER macro is set. This problem manifested itself as segfaults due to uninitialized empty strings: https://github.com/google/protobuf/issues/2839 Since no one complained about initialization not happening, it would appear that we can just disable this initialization for lite unconditionally, so that is what this change does. Instead of the default instance initialization happening pre-main, it now always happens lazily when needed.
-
Brent Shaffer authored
-
Paul Yang authored
Merge 3.3.x into master
-
- 18 Jul, 2017 5 commits
-
-
Feng Xiao authored
Add note about includes to README
-
Bo Yang authored
-
Jie Luo authored
Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION for pure python comformance
-
Daniel Taylor authored
Ran into an issue today where a machine had the `protoc` compiler but not the include files. Took a while to sort out, and this added note to the README included in every zip should help.
-
Matt A authored
* Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
-
- 17 Jul, 2017 7 commits
-
-
Jie Luo authored
-
Adam Cozzette authored
Fix map_field_inl.h for gcc 4.1
-
Adam Cozzette authored
Fix build when using -Werror=undef
-
Feng Xiao authored
Issue 3112: Object class with fully qualified name
-
Adam Cozzette authored
Expand documentation in Readme.md
-
Brent Shaffer authored
* remove pass by reference for php setters * comments out memory leak test
-
Richard Fussenegger authored
Both native_slot_merge and native_slot_merge_by_array have no return type declared. GCC implicitly uses int as return type in such cases, however, these functions are actually void.
-
- 15 Jul, 2017 1 commit
-
-
dylanetaft authored
Add some supporting documentation regarding Closure for those unfamiliar., Also substantiate details for "files in this directory" - including them all will result in a project that does not compile as some are used for test cases and aren't part of the core library.
-
- 14 Jul, 2017 1 commit
-
-
Paul Yang authored
In the generated code of previous versions, each php field is given an initial value. In c extension, it was assumed that the field order in the generated code is consistent with upb fields order, so that the correct initial value can be bound to the correct upb field. However, this may not be true. The order of fields in generated code is decided by proto compiler, while the order of upb fields is decided by the hash function used in c extension. This PR fixes the issue by reset the initial value at runtime.
-
- 13 Jul, 2017 5 commits
-
-
Brent Shaffer authored
-
Paul Yang authored
-
Paul Yang authored
-
Feng Xiao authored
Use consistent hash across NDEBUG/!NDEBUG builds.
-
Jon Skeet authored
-
- 12 Jul, 2017 2 commits
-
-
Brad Larson authored
Correct a couple places where macros were being checked when they might not exist in some cases. Fixes #3356.
-
Jean-Rémy Bancel authored
-
- 11 Jul, 2017 2 commits
-
-
Matt Hauck authored
-
Laszlo Csomor authored
Add implementations of open(2), mkdir(2), stat(2), etc. that support long paths under Windows (paths longer than MAX_PATH in <windows.h>, which is 260 characters). The implementations are in a separate namespace (google::protobuf::internal::win32), so they won't collide with the standard implementations in <io.h>, but after importing them with `using` they can be drop-in replacements. Fixes https://github.com/bazelbuild/bazel/issues/2634 Fixes https://github.com/google/protobuf/issues/2891
-
- 10 Jul, 2017 2 commits
-
-
Matt Hauck authored
Rather than crashing on use (doh!) better to just declare this platform is missing a proper hash_map/hash_set implementation and use the std::map/std::set emulation. Fixes regression introduced by #1913
-
tanderson-google authored
* Remove using std::{set,map}
-
- 09 Jul, 2017 1 commit
-
-
Paul Yang authored
-
- 07 Jul, 2017 1 commit
-
-
Harvey Tuch authored
Fixes #3322.
-