aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Fix issues with Windows build: Always use ASCII version of CreateProcess ↵Gravatar kenton@google.com2010-01-15
| | | | (even if UNICODE is defined) and move GetMessage macro work-around to common.h so that it covers extension_set.h as well. Patch from Nick Carter.
* Fixes compile on GCC 3.2 according to Sergey Tihansky.Gravatar kenton@google.com2010-01-13
|
* Add makefile for extended tests to be run before release.Gravatar kenton@google.com2010-01-12
|
* Fix bogus sign-compare warnings in header at request of user.Gravatar kenton@google.com2010-01-11
|
* Fix date in CHANGES.txt. Sigh.Gravatar temporal2010-01-09
|
* Update version number in trunk to 2.3.1.Gravatar kenton@google.com2010-01-09
|
* Update CHANGES.txt to reflect actual expected release date of 2.3.0.Gravatar kenton@google.com2010-01-08
|
* Fix memory leak in CommandLineInterface, not that it really matters.Gravatar kenton@google.com2010-01-08
|
* Minor compatibility tweaks for FreeBSD.Gravatar kenton@google.com2010-01-08
|
* Tweak doc comments.Gravatar kenton@google.com2010-01-08
|
* Detect and avoid broken unordered_map on OSX 10.5 / GCC 4.0.1.Gravatar kenton@google.com2010-01-07
|
* Add missing file to dist.Gravatar kenton@google.com2010-01-07
|
* Address comments from various code reviews.Gravatar kenton@google.com2010-01-07
|
* Monty Taylor claims this helps the drizzle compile for some reason.Gravatar kenton@google.com2010-01-05
|
* Mention zip/jar output in CHANGES.txt.Gravatar kenton@google.com2010-01-04
|
* Fixed DLL compile under MSVC.Gravatar kenton@google.com2010-01-04
|
* Fix syntax of function definition in shell script so that it hopefully works ↵Gravatar kenton@google.com2010-01-04
| | | | on Solaris.
* Another Sun Studio fix from Monty Taylor.Gravatar kenton@google.com2010-01-04
|
* Improve zip/jar support:Gravatar kenton@google.com2010-01-04
| | | | | | | | | - Don't support par or war since par is not a standard format and outputting to war doesn't make sense. - Add boilerplate manifest when outputting to Jar. - Remove "XXX check conversion" comments because I don't care. - Add a test.
* Allow protoc to output directly to zip/jar/par/war files.Gravatar kenton@google.com2009-12-24
|
* Fix 32/64-bit confusion on Solaris 10 x86. Patch from Oliver Jowett.Gravatar kenton@google.com2009-12-23
|
* Try again to fix build on Sun Studio -- Monty Taylor claims this will do it.Gravatar kenton@google.com2009-12-23
|
* Refactor the way output is handled in CommandLineInterface -- now it will be ↵Gravatar kenton@google.com2009-12-23
| | | | stored in-memory until all code generators have completed, then dumped to disk all at once. While this means that protoc uses more memory, the code is much simpler, and handles insertions much faster. Also, this made it easier to implement a useful feature: insertions will be indented to match the insertion point line. Therefore, when inserting into Python code, you don't have to figure out how much to indent your inserted code. The refactoring should also make it easier to implement output-to-jar at some point.
* Actually, that last revision can be simpler -- we don't need to parse ↵Gravatar kenton@google.com2009-12-23
| | | | strings at all, as simply entering 1e1000 as a float literal in Python will be evaluated as infinity.
* In Python, avoid relying on float('inf') and float('nan') as these don't ↵Gravatar kenton@google.com2009-12-23
| | | | work on Windows with Python pre-2.6.
* Same as r275 except for Python.Gravatar kenton@google.com2009-12-23
|
* In Java's TextFormat, correcty concatenate adjacent string literals, as C++ ↵Gravatar kenton@google.com2009-12-23
| | | | does. Also fix a bug in handling of single-quoted strings.
* Make extension identifiers final. This improves security when untrusted ↵Gravatar kenton@google.com2009-12-22
| | | | code is present in the same class loader. In order to get around initialization ordering issues, I simply made the constructor for extension identifiers take no arguments and deferred initialization to an internalInit() method, which generated code will always call during init.
* Mark plugins as experimental for now.Gravatar kenton@google.com2009-12-22
|
* getExtension() on an empty repeated field should return an empty list, not a ↵Gravatar kenton@google.com2009-12-22
| | | | singular default value.
* When serializing to an ostream, verify that there were no stream-level ↵Gravatar kenton@google.com2009-12-22
| | | | errors before returning success.
* Clarify that pushLimit() does not limit the number of bytes CodedInputStream ↵Gravatar kenton@google.com2009-12-22
| | | | will read from the underlying InputStream.
* Accept form feeds as whitespace.Gravatar kenton@google.com2009-12-22
|
* Hopefully fix build on Sun Studio.Gravatar kenton@google.com2009-12-22
|
* Build DLLs on Cygwin and MinGW.Gravatar kenton@google.com2009-12-22
|
* Make sure test_plugin.vcproj is included in dist.Gravatar kenton@google.com2009-12-21
|
* Fix build on MSVC.Gravatar kenton@google.com2009-12-21
|
* Fix build on GCC 3.3/Linux.Gravatar kenton@google.com2009-12-21
|
* Argh, this line was not supposed to be submitted.Gravatar kenton@google.com2009-12-21
|
* Use unordered_map when available. Changes to stl_hash.m4 provided by Oleg ↵Gravatar kenton@google.com2009-12-21
| | | | Smolsky.
* Add a code generator insertion point for Java builders.Gravatar temporal2009-12-20
|
* Fix build on MinGW/Win32 (including implementing Subprocess using ↵Gravatar kenton@google.com2009-12-19
| | | | CreateProcess()).
* Ensure that 'once' objects are declared using the macro. This is either the ↵Gravatar temporal2009-12-18
| | | | 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!
* Fix Cygwin build.Gravatar kenton@google.com2009-12-18
|
* Commit missing files from r251. Sigh.Gravatar kenton@google.com2009-12-18
|
* Set version to 2.3.0-pre.Gravatar kenton@google.com2009-12-18
|
* Point test_plugin at the correct gtest headers.Gravatar kenton@google.com2009-12-18
|
* Massive roll-up of changes. See CHANGES.txt.Gravatar kenton@google.com2009-12-18
|
* Some sort of emacs protobuf mode fix.Gravatar kenton@google.com2009-12-18
|
* Fix UTF-8 validity checks to not do unaligned reads.Gravatar kenton@google.com2009-12-11
|