1. 0abe9c2 Argh, this line was not supposed to be submitted. by kenton@google.com · 15 years ago
  2. ee7e942 Use unordered_map when available. Changes to stl_hash.m4 provided by Oleg Smolsky. by kenton@google.com · 15 years ago
  3. 8ee1474 Add a code generator insertion point for Java builders. by temporal · 15 years ago
  4. 684d45b Fix build on MinGW/Win32 (including implementing Subprocess using CreateProcess()). by kenton@google.com · 15 years ago
  5. bdbb863 Ensure that 'once' objects are declared using the macro. This is either the third or fourth time I've screwed this up when down-integrating, because our internal code does not require the macro (it's not portable) and on Linux a pthread_once_t that is zero-initialized just happens to work. So, I only discover the problem when I test on Mac, then kick myself for making the same mistake yet again. No more! This time, I have renamed GoogleOnceType to ProtobufOnceType, thus making the type name differ from our internal code. As a result, if you don't update the decls to use the macros, they won't compile. Hah! Take that, future self! by temporal · 15 years ago
  6. 91218af Fix Cygwin build. by kenton@google.com · 15 years ago
  7. 5e744ff Commit missing files from r251. Sigh. by kenton@google.com · 15 years ago
  8. afd32ab Set version to 2.3.0-pre. by kenton@google.com · 15 years ago
  9. 83ad01e Point test_plugin at the correct gtest headers. by kenton@google.com · 15 years ago
  10. fccb146 Massive roll-up of changes. See CHANGES.txt. by kenton@google.com · 15 years ago
  11. d5cf7b5 Some sort of emacs protobuf mode fix. by kenton@google.com · 15 years ago
  12. b221008 Fix UTF-8 validity checks to not do unaligned reads. by kenton@google.com · 15 years ago
  13. de74779 fix SONAME in trunk by kenton@google.com · 15 years ago
  14. 9951233 Fix Issue 136: the memoized serialized size for packed fields may not by jasonh+personal@google.com · 15 years ago
  15. 6493368 CodedInputStream.getTotalBytesRead(); patch from Michael Kucharski. by kenton@google.com · 15 years ago
  16. 6ba3df0 Add benchmarks for writing to a FileOutputStream. Patch from Evan Jones. by kenton@google.com · 15 years ago
  17. c0abf64 Convert ProtoBench.java to unix-style line endings. by kenton@google.com · 15 years ago
  18. f85d70f Optimize Java serialization of small messages to streams. Patch from Evan Jones. by kenton@google.com · 15 years ago
  19. 573989f Explicitly call superclass constructor in generated code to avoid pedantic warning. Based on patch from Oleg Smolsky. by kenton@google.com · 15 years ago
  20. 1a4193c Fix MSVC version check -- I was given bad info. by kenton@google.com · 15 years ago
  21. c91e1fe Support MSVC 2010 beta 1. by kenton@google.com · 15 years ago
  22. 477f799 Improve error message regarding proto_path not matching .proto file. by kenton@google.com · 15 years ago
  23. 32f330f Detect whether zlib is new enough. Based on patch from Oliver Jowett. by kenton@google.com · 15 years ago
  24. f4c6e4b Fix protobuf-mode on XEmacs. by kenton@google.com · 15 years ago
  25. 721995d Fix cross-compiling when building in a dedicated build directory. Fix pointed out by Pierre Kestener. by kenton@google.com · 15 years ago
  26. 7fb9ae9 Make sure to quality calls to std::swap. Otherwise, if a google::swap() exists (e.g. because the user is using our own dense_hash_map implementation) it will be chosen instead, leading to a compile error. by kenton@google.com · 15 years ago
  27. b26684a Remove test that had undefined behavior and thus did not pass on some platforms. by kenton@google.com · 15 years ago
  28. 3aa7a0d HPUX patch from Alexander Melnikov. by kenton@google.com · 15 years ago
  29. ad5672b Update experimental SEBS file to support cross-compiling. by temporal · 15 years ago
  30. 0bcfeb9 Don't use RTTI in down_cast if GOOGLE_PROTOBUF_NO_RTTI is defined. Patch from Chris Masone (of Google). by kenton@google.com · 15 years ago
  31. 8169c7f Set version number to 2.2.1 in trunk. by kenton@google.com · 15 years ago
  32. 201b9be Set release date. by kenton@google.com · 15 years ago
  33. 0f831dc Add new headers to extract_includes.bat. by kenton@google.com · 15 years ago
  34. 8aae2a2 Oops, unittest_enormous_descriptor.proto still needs to be in the dist. by kenton@google.com · 15 years ago
  35. e133abd Don't build unittest_enormous_decsriptor.proto in C++ because it's very slow on older GCCs. This file was meant for testing Java anyway. by kenton@google.com · 15 years ago
  36. 304b731 Hack to make gtest sub-package compile correctly on Sun Studio. by kenton@google.com · 15 years ago
  37. db0bf5a Fix MSVC projects to ensure that protoc is built before lite-test attempts to use it and that lite-test and tests don't attempt to generate the same .pb.* files at the same time. by kenton@google.com · 15 years ago
  38. 09b9e99 Make tests compile on Sun Studio. Patch from Monty Taylor. by kenton@google.com · 15 years ago
  39. bcb791a Experimental alternative build definition. by temporal · 15 years ago
  40. fdd9d3c Remove more of the stuff that was supposed to be removed in r190. by kenton@google.com · 15 years ago
  41. 323e632 doc comment tweaks by kenton@google.com · 15 years ago
  42. 75fcd79 Silence pedantic warning about unused parameter. by kenton@google.com · 15 years ago
  43. 7ddfb4c Remove semi-broken Java thread-local builder freelist 'optimization'. Maybe bring back later in optional form. by kenton@google.com · 15 years ago
  44. 68996fc Gigantic descriptors shouldn't overflow the Java string literal size limit. by kenton@google.com · 15 years ago
  45. 445f102 Update version number to 2.2.0-pre. by kenton@google.com · 15 years ago
  46. 1a34c92 Make sure GeneratedMessageFactory is deleted on shutdown. by kenton@google.com · 15 years ago
  47. 6be265a Improve Sun Studio support. Patch from Monty Taylor. by kenton@google.com · 15 years ago
  48. 6c9f002 OCD by kenton@google.com · 15 years ago
  49. 5ea590d add lite profile docs in the README by gk5885 · 15 years ago
  50. 5bf5361 Ensure that only the lite tests are run, even if all tests have been compiled by gk5885 · 15 years ago
  51. a4022f8 This fixes some issues with the lite profile for the java build in which the lite jar contained the full binary. by gk5885 · 15 years ago
  52. ac4764e Update the pom to support the 'lite' profile. by gk5885 · 15 years ago
  53. 58ebb1c Fix argument order -- I guess this macro is unused... by kenton@google.com · 15 years ago
  54. 3c66c2e Allow dependents to use pkg-config to figure out what flags to pass to link against protobuf. by kenton@google.com · 15 years ago
  55. ad2cfe0 Make sure lite MSVC projects get into dist. by temporal · 15 years ago
  56. 43af40d Remove @Override annotations that cause compiler errors on Java 1.5. by temporal · 15 years ago
  57. f837b00 Use the nice macro to declare once-init control objects, like good little coders should. Otherwise the initialization routines never run on Mac. TODO: Investigate how this was broken. by temporal · 15 years ago
  58. 9270a99 Make DLLs work again. by kenton@google.com · 15 years ago
  59. e6607e3 Update MSVC project files for recent changes. Added new projects for libprotobuf-lite and the lite test. by kenton@google.com · 15 years ago
  60. c3a2453 Hurr, some merge conflict was resolved poorly. Fixed. by kenton@google.com · 15 years ago
  61. 253a850 Allow compression level of GzipOutputStream to be configured. by kenton@google.com · 15 years ago
  62. 1900c53 Fix compile for GCC 3.4.4. by kenton@google.com · 15 years ago
  63. 39671e5 Extend MAINTAINERCLEANFILES to include some things automatically added by libtoolize. by kenton@google.com · 15 years ago
  64. 6cbe32f Use SVN externals for gtest. by kenton@google.com · 15 years ago
  65. c137750 Remove two empty source files. This doesn't actually have any effect on code size but might as well get rid of them. by kenton@google.com · 15 years ago
  66. 4f3491e Decouple strutil from C++ lite library for a further 23k reduction. by kenton@google.com · 15 years ago
  67. 858a22b Define libprotobuf-lite in Makefile.am. by kenton@google.com · 15 years ago
  68. 80b1d62 Submit recent changes from internal branch, including "lite mode" for by kenton@google.com · 15 years ago
  69. d2fd063 Down-integrate some code from an internal branch. (More to come.) by kenton@google.com · 15 years ago
  70. 31afcd7 Fix problems with emacs protobuf mode, I guess. See <http://www.opensubscriber.com/message/emacs-devel@gnu.org/7155093.html>. Patch from domq@google.com. by kenton@google.com · 15 years ago
  71. ceb561d Add Swap(), SwapElements(), and RemoveLast() to Reflection. Patch by Scott Stafford. by kenton@google.com · 15 years ago
  72. f22943c Fix build problem with -std=gnu++0x. by kenton@google.com · 15 years ago
  73. a518346 Fixes to acx_check_suncc.m4 from Monty Taylor. by kenton@google.com · 15 years ago
  74. b437279 Fix final leak (win32 only). by kenton@google.com · 15 years ago
  75. 1fb3d39 Update version number in trunk. by kenton@google.com · 15 years ago
  76. 1d4df6c Fix compile error on Cygwin, where int32 is typedefed to long instead of int, and the compiler can't figure out which overload of this method to use in that case. by kenton@google.com · 15 years ago
  77. e21c573 Make sure examples link properly. by kenton@google.com · 15 years ago
  78. 63e646b Provide ShutdownProtobufLibrary() which frees all startup-allocated objects. by kenton@google.com · 15 years ago
  79. 9824eda enable cross-compiling by kenton@google.com · 15 years ago
  80. 42c81e1 Set better default CXXFLAGS and don't use optimization when compiling tests by kenton@google.com · 15 years ago
  81. 3d694ad Fix test failure on 64-bit python. by kenton@google.com · 15 years ago
  82. a8923cd More Sun CC hacks. Contributed by Monty Taylor. by kenton@google.com · 15 years ago
  83. 2fd1208 Hopefully make autogen.sh run on solaris. by kenton@google.com · 15 years ago
  84. 2cdba5b Add Emacs editor mode. Contributed by Alexandre Vassalotti. by kenton@google.com · 15 years ago
  85. 1589b1d Fix startup crash when statically linking on Mac. by temporal · 15 years ago
  86. c5ff06c Add second run of cpp_unittest which verifies that descriptors are 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. by kenton@google.com · 15 years ago
  87. 503a4dd Convert some \u escape sequences to UTF-8 because MSVC interprets them differently. by kenton@google.com · 15 years ago
  88. 30be0a8 Don't use dll-export declspec on class-nested extensions. by kenton@google.com · 15 years ago
  89. 41c3760 Update extract_includes.bat to include new public headers in rev 120. by kenton@google.com · 15 years ago
  90. ccc1167 Make building libprotobuf as a DLL work again. by kenton@google.com · 15 years ago
  91. ef3730c Add test verifying that protoc accepts trailing backslashes on Windows, which some users claim doesn't work. Seems to work on my machine. by kenton@google.com · 15 years ago
  92. d33e53a That last rev shouldn't have compiled, but apparently did, for some reason. Fixed. by kenton@google.com · 15 years ago
  93. db4b583 Protect a new death test with GTEST_HAS_DEATH_TEST, since MinGW doesn't support it. by kenton@google.com · 15 years ago
  94. 50ede8b Update MSVC project files for rev 120, and add instructions for compiling with zlib. by kenton@google.com · 15 years ago
  95. d37d46d Integrate recent changes from Google-internal code tree. See CHANGES.txt by kenton@google.com · 15 years ago
  96. 709ea28 Work around windows.h #defining GetMessage(). by kenton@google.com · 16 years ago
  97. 6f9bc71 Add missing LIBPROTOBUF_EXPORT. by kenton@google.com · 16 years ago
  98. 679edc4 Remove scoped_memory_log.h from MSVC project files -- it has not existed for some time. by kenton@google.com · 16 years ago
  99. 4152d55 Handle .exe extension when looking for protoc in setup.py. by kenton@google.com · 16 years ago
  100. bbbd4d3 Update MSVC project files to work with new gtest bundling strategy. by kenton@google.com · 16 years ago