aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Gigantic descriptors shouldn't overflow the Java string literal size limit.Gravatar kenton@google.com2009-08-07
|
* Update version number to 2.2.0-pre.Gravatar kenton@google.com2009-08-06
|
* Make sure GeneratedMessageFactory is deleted on shutdown.Gravatar kenton@google.com2009-08-06
|
* Improve Sun Studio support. Patch from Monty Taylor.Gravatar kenton@google.com2009-08-06
|
* OCDGravatar kenton@google.com2009-08-05
|
* add lite profile docs in the READMEGravatar gk58852009-08-04
|
* Ensure that only the lite tests are run, even if all tests have been compiledGravatar gk58852009-08-04
|
* This fixes some issues with the lite profile for the java build in which the ↵Gravatar gk58852009-08-04
| | | | lite jar contained the full binary.
* Update the pom to support the 'lite' profile.Gravatar gk58852009-08-04
|
* Fix argument order -- I guess this macro is unused...Gravatar kenton@google.com2009-08-04
|
* Allow dependents to use pkg-config to figure out what flags to pass to link ↵Gravatar kenton@google.com2009-08-03
| | | | against protobuf.
* Make sure lite MSVC projects get into dist.Gravatar temporal2009-08-01
|
* Remove @Override annotations that cause compiler errors on Java 1.5.Gravatar temporal2009-08-01
|
* Use the nice macro to declare once-init control objects, like good little ↵Gravatar temporal2009-08-01
| | | | coders should. Otherwise the initialization routines never run on Mac. TODO: Investigate how this was broken.
* Make DLLs work again.Gravatar kenton@google.com2009-08-01
|
* Update MSVC project files for recent changes. Added new projects for ↵Gravatar kenton@google.com2009-08-01
| | | | libprotobuf-lite and the lite test.
* Hurr, some merge conflict was resolved poorly. Fixed.Gravatar kenton@google.com2009-08-01
|
* Allow compression level of GzipOutputStream to be configured.Gravatar kenton@google.com2009-08-01
|
* Fix compile for GCC 3.4.4.Gravatar kenton@google.com2009-08-01
|
* Extend MAINTAINERCLEANFILES to include some things automatically added by ↵Gravatar kenton@google.com2009-07-31
| | | | libtoolize.
* Use SVN externals for gtest.Gravatar kenton@google.com2009-07-31
|
* Remove two empty source files. This doesn't actually have any effect on ↵Gravatar kenton@google.com2009-07-29
| | | | code size but might as well get rid of them.
* Decouple strutil from C++ lite library for a further 23k reduction.Gravatar kenton@google.com2009-07-29
|
* Define libprotobuf-lite in Makefile.am.Gravatar kenton@google.com2009-07-29
| | | | | | | TODO: Compile conditionally? Provide a way to omit ExtensionSet? Should libprotobuf depend on libprotobuf-lite instead of being a stand-alone lib?
* Submit recent changes from internal branch, including "lite mode" forGravatar kenton@google.com2009-07-29
| | | | | C++ and Java. See CHANGES.txt for more details.
* Down-integrate some code from an internal branch. (More to come.)Gravatar kenton@google.com2009-07-24
|
* Fix problems with emacs protobuf mode, I guess. See ↵Gravatar kenton@google.com2009-07-08
| | | | <http://www.opensubscriber.com/message/emacs-devel@gnu.org/7155093.html>. Patch from domq@google.com.
* Add Swap(), SwapElements(), and RemoveLast() to Reflection. Patch by Scott ↵Gravatar kenton@google.com2009-06-25
| | | | Stafford.
* Fix build problem with -std=gnu++0x.Gravatar kenton@google.com2009-06-01
|
* Fixes to acx_check_suncc.m4 from Monty Taylor.Gravatar kenton@google.com2009-05-28
|
* Fix final leak (win32 only).Gravatar kenton@google.com2009-05-18
|
* Update version number in trunk.Gravatar kenton@google.com2009-05-13
|
* Fix compile error on Cygwin, where int32 is typedefed to long instead of ↵Gravatar kenton@google.com2009-05-06
| | | | int, and the compiler can't figure out which overload of this method to use in that case.
* Make sure examples link properly.Gravatar kenton@google.com2009-05-06
|
* Provide ShutdownProtobufLibrary() which frees all startup-allocated objects.Gravatar kenton@google.com2009-05-06
|
* enable cross-compilingGravatar kenton@google.com2009-05-06
|
* Set better default CXXFLAGS and don't use optimization when compiling testsGravatar kenton@google.com2009-05-06
| | | | | (takes too long).
* Fix test failure on 64-bit python.Gravatar kenton@google.com2009-05-01
|
* More Sun CC hacks. Contributed by Monty Taylor.Gravatar kenton@google.com2009-05-01
|
* Hopefully make autogen.sh run on solaris.Gravatar kenton@google.com2009-05-01
|
* Add Emacs editor mode. Contributed by Alexandre Vassalotti.Gravatar kenton@google.com2009-05-01
|
* Fix startup crash when statically linking on Mac.Gravatar temporal2009-04-28
|
* Add second run of cpp_unittest which verifies that descriptors are ↵Gravatar kenton@google.com2009-04-28
| | | | constructed lazily. This is accomplished by avoiding any use of descriptors while testing a bunch of other operations, then checking at the end that descriptors have not been constructed.
* Convert some \u escape sequences to UTF-8 because MSVC interprets them ↵Gravatar kenton@google.com2009-04-28
| | | | differently.
* Don't use dll-export declspec on class-nested extensions.Gravatar kenton@google.com2009-04-28
|
* Update extract_includes.bat to include new public headers in rev 120.Gravatar kenton@google.com2009-04-28
|
* Make building libprotobuf as a DLL work again.Gravatar kenton@google.com2009-04-28
|
* Add test verifying that protoc accepts trailing backslashes on Windows, ↵Gravatar kenton@google.com2009-04-28
| | | | which some users claim doesn't work. Seems to work on my machine.
* That last rev shouldn't have compiled, but apparently did, for some reason. ↵Gravatar kenton@google.com2009-04-28
| | | | Fixed.
* Protect a new death test with GTEST_HAS_DEATH_TEST, since MinGW doesn't ↵Gravatar kenton@google.com2009-04-28
| | | | support it.