- 22 Mar, 2021 2 commits
-
-
Ilya Lipnitskiy authored
Allows suppression of .pb-c.{c,h} file generation on a .proto file basis. protobuf-c.proto: Use the new option in itself, because the options are never used by protobuf-c runtime, only by the protoc-gen-c compiler. t/test-full.proto: import protobuf-c.proto to test that protobuf-c.pb-c.h dependency does not get included in test-full.pb-c.h.
-
Ilya Lipnitskiy authored
-
- 19 Feb, 2021 4 commits
-
-
Robert Edmonds authored
Avoid "unused function parameter" compiler warning
-
Wolfram Rösler authored
-
Robert Edmonds authored
fix invalid unsigned arithmetic.
-
Robert Edmonds authored
Install debug symbols alongside the protobuf-c.lib
-
- 10 Feb, 2021 1 commit
-
-
ihsinme authored
-
- 08 Feb, 2021 1 commit
-
-
Piotr Pietraszkiewicz authored
A user of the protobuf-c library is confronted with MSVC warnings about missing PDB if the library happens to be built/configured using the CMAKE_BUILD_TYPE "Debug" or "RelWithDebInfo". This commit deals away with the warning by installing the "protobuf-c.pdb" alongside the lib. The .pdb is installed only if it exists. Configuring "Release" or building under Linux won't produce and won't install the PDB.
-
- 17 Oct, 2020 1 commit
-
-
Robert Edmonds authored
Updated the generator to fully qualify std::string
-
- 16 Oct, 2020 1 commit
-
-
Adam Cozzette authored
The protobuf common.h header currently has a "using std::string;" statement that pulls std::string into the google::protobuf namespace: https://github.com/protocolbuffers/protobuf/blob/ce66f6047db44df3234bccd6fcf468bccc14a760/src/google/protobuf/stubs/common.h#L195 I plan to delete that line soon. To keep protobuf-c working, this commit updates the generator to fully qualify std::string.
-
- 06 Sep, 2020 1 commit
-
-
Robert Edmonds authored
Travis CI: Test on other platforms
-
- 23 Jul, 2020 2 commits
-
-
Daniel Axtens authored
Travis CI now supports testing on arm64, ppc64le and s390x. It would be nice to test on them. Signed-off-by: Daniel Axtens <dja@axtens.net>
-
Daniel Axtens authored
Bionic contains more recent compilers, which are required to have the sanitisers work under s390x. While we're at it, the 'sudo' key is deprecated, so remove it: https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration (It used to be used to mark VM vs docker container infrastructure, but currently all amd64 builds run on VMs and all other archs run inside LXD containers.) Signed-off-by: Daniel Axtens <dja@axtens.net>
-
- 20 Jun, 2020 6 commits
-
-
Robert Edmonds authored
Pack nested messages inline
-
Robert Edmonds authored
protoc-c: Remove leading underscores from structs
-
Robert Edmonds authored
protobuf-c.c: Cast %lu args to unsigned long int
-
Robert Edmonds authored
Standardize pkg-config for use by autotools and cmake, fix cmake tests
-
Robert Edmonds authored
protobuf-c.h: Fix Windows DLL export (Fixes #331)
-
Robert Edmonds authored
c_message.cc: Resolve name conflict (Fixes #389)
-
- 14 May, 2020 1 commit
-
-
Markus Engel authored
Signed-off-by: Markus Engel <engel@sero-systems.de>
-
- 13 May, 2020 6 commits
-
-
Ilya Lipnitskiy authored
Fixes #188. Implements suggested fix from the issue: The struct tag namespace is different from the type namespace. Use the same symbol names (i.e. without leading underscores) in every namespace.
-
dota17 authored
-
Ilya Lipnitskiy authored
Also use BUILD_TESTS instead of CMAKE_BUILD_TYPE in other places in the file.
-
Ilya Lipnitskiy authored
-
Ilya Lipnitskiy authored
Resolves an ambiguity that %zu was meant to address, since %zu is not present on all platforms. Fixes #357.
-
Ilya Lipnitskiy authored
protobuf_c_empty_string is used in generated .pb-c.{c,h} files so it should be exported properly.
-
- 12 May, 2020 2 commits
-
-
Ilya Lipnitskiy authored
-
James Benton authored
-
- 09 May, 2020 6 commits
-
-
Ilya Lipnitskiy authored
lib.protobuf-c.io is no longer reachable.
-
Ilya Lipnitskiy authored
-
Ilya Lipnitskiy authored
-
Ilya Lipnitskiy authored
-lpthread was missing from the linker command line. See https://github.com/protocolbuffers/protobuf/issues/5107 for more details. .travis.yml: Run CMake debug build for verification
-
Ilya Lipnitskiy authored
-
Ilya Lipnitskiy authored
PACKAGE_DESCRIPTION is defined in configure.ac. PACKAGE_NAME, PACKAGE_VERSION, and PACKAGE_URL come from AC_INIT. This change will ensure that libprotobuf-c.pc.in could also be used by CMake.
-
- 13 Feb, 2020 2 commits
-
-
Robert Edmonds authored
Bump version to 1.3.3
-
Robert Edmonds authored
-
- 04 Dec, 2019 2 commits
-
-
Robert Edmonds authored
-
Robert Edmonds authored
fix suport for MSVC static build
-
- 19 Oct, 2019 2 commits
-
-
Markus Engel authored
Signed-off-by: Markus Engel <engel@sero-systems.de>
-
Robert Edmonds authored
protobuf-c.c: Make zigzag encoding more compact
-