2023-12-04 15:02:29 by Jonathan Perkin | Files touched by this commit (1) | |
Log message:
protobuf-c: Restore section removed in last update.
Without this the build fails with "google/protobuf/descriptor.proto: File not
found.". It's unclear how this could work for some and not others.
|
2023-11-26 07:06:28 by Thomas Klausner | Files touched by this commit (20) | |
Log message:
protobuf-c: update to 1.5.0.
What's Changed
Makefile.am: change link order by @franksinankaya in #486
GitHub actions fail on Windows due to missing unzip command by @britzl in #525
Export and install CMake targets by @morrisonlevi in #472
Use CMAKE_CURRENT_BINARY_DIR instead of CMAKE_BINARY_DIR by @KivApple in #482
remove deprecated functionality by @aviborg in #542
Avoid "unused variable" compiler warning by @rgriege in #545
Update autotools by @AtariDreams in #550
Support for new Google protobuf 22.x, 23.x releases by @edmonds in #673
Miscellaneous fixes by @edmonds in #675
Remove protobuf 2.x support by @edmonds in #676
Silence some compiler diagnostics by @edmonds in #677
Fixing MSVC build for Msbuild and Makefile generators by @MiguelBarro in #685
|
2023-11-15 19:14:46 by Thomas Klausner | Files touched by this commit (55) |
Log message:
*: bump for protobuf 25
|
2023-11-03 14:11:26 by Thomas Klausner | Files touched by this commit (20) |
Log message:
protobuf-c: fix build with latest protobuf
From upstream, who should really make a new release.
Bump PKGREVISION.
|
2023-11-02 13:20:06 by Thomas Klausner | Files touched by this commit (54) |
Log message:
*: recursive bump for protobuf
|
2022-08-18 21:24:09 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
protobuf-c: update to 1.4.1.
protobuf-c (1.4.1)
[ Robert Edmonds ]
* Release 1.4.1
[ Todd C. Miller ]
* Only shift unsigned values to avoid implementation-specific behavior
(#506, #508).
* Fix regression with zero-length messages introduced in protobuf-c PR 500.
* Fix a clang analyzer 14 warning about a possible NULL deref (#512, #514).
[ steed717 ]
* Fix unsigned integer overflow (#499, #513).
|
2022-08-06 18:45:20 by Havard Eidnes | Files touched by this commit (2) |
Log message:
devel/protobuf-c: convert to use mk/atomic64.mk.
|
2022-06-23 15:57:35 by Havard Eidnes | Files touched by this commit (1) |
Log message:
devel/protobuf-c: needs -latomic on NetBSD/powerpc.
Presumably for 8-byte atomic operations.
|
2022-04-24 21:29:12 by Tobias Nygren | Files touched by this commit (1) |
Log message:
protobuf-c: fix build failure in bulk builds
This has been observed on both NetBSD and SunOS. Build fails with:
"google/protobuf/descriptor.proto: File not found."
This message comes from:
/usr/pkg/bin/protoc -I. --cpp_out=. ./protobuf-c/protobuf-c.proto
-I. is the current directory, WRKSRC.
But descriptor.proto comes from the devel/protobuf package and is not
present in WRKSRC. Fix by symlinking in include/google from the buildlink
directory under WRKSRC.
|
2022-04-13 12:48:15 by Thomas Klausner | Files touched by this commit (3) | |
Log message:
protobuf-c: update to 1.4.0.
protobuf-c (1.4.0)
[ Robert Edmonds ]
* Release 1.4.0.
[ Ilya Lipnitsky ]
* c_message.cc: Resolve name conflict between certain enums and oneofs
(#427).
* protobuf-c.h: Fix Windows DLL export issue with the
protobuf_c_empty_string symbol (#428).
* Standardize pkg-config for use by autotools and cmake, fix cmake tests
(#425).
* protobuf-c.c: Cast %lu args to unsigned long int (#429).
* protoc-c: Remove leading underscores from structs (#430).
* protoc-c: Fix shared lib build on windows, migrate from Travis CI to
GitHub Actions (#459).
* protobuf-c: Don't use ProtobufCWireType internally (#463).
* protoc-c: Add custom options support (#466).
* protobuf-c.c: Fix packed repeated bool parsing (#467).
[ Markus Engel ]
* Pack nested messages inline (#431).
[ Daniel Axtens ]
* Travis CI: Test on other platforms (#438).
[ Adam Cozzette ]
* Update the generator to fully qualify std::string (#443).
[ Piotr Pietraszkiewicz ]
* Install MSVC debug symbols alongside the protobuf-c.lib file (#456).
[ ihsinme ]
* Fix invalid unsigned arithmetic (#455).
[ Wolfram Rösler ]
* Avoid "unused function parameter" compiler warning (#453).
|