[protobuf] Re: Issue 270 in protobuf: Precompiled protoc binary for OS X

2011-04-20 Thread protobuf
Comment #4 on issue 270 by inder123: Precompiled protoc binary for OS X http://code.google.com/p/protobuf/issues/detail?id=270 I have XCode installed on my MacBook Pro (intel chip, fairly recent) with Leopard. However, make fails on me. Please consider providing precompiled Mac OS X

[protobuf] Error in java Main

2011-04-20 Thread SImplyG2010
Good evening, I have been stepping through the non maven compile of proto buffers for Java and everything seems to have compiled correctly. However when I bring the main code into Eclipse as a project I get the following error. The method getUnknownFields() of type

[protobuf] Re: Issue 270 in protobuf: Precompiled protoc binary for OS X

2011-04-20 Thread Peter Ondruska
I have OSX 10.6 and built with Xcode 3 and 4 with no problems. Did you readme.txt? -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To post to this group, send email to protobuf@googlegroups.com. To unsubscribe from this group, send email to

[protobuf] adding submessages to higher message

2011-04-20 Thread Aaron Rich
New to protoco buffers so sorry if this is a simple/stupid question. I have a proto: message WrapperMessage { enum Type { PING = 1; PONG = 2; } message Header{ required Type type = 1; required string source = 2; required int64 time = 3;

[protobuf] Re: adding submessages to higher message

2011-04-20 Thread Aaron Rich
I found the method: AddAllocated(Element*) which I think will add the Pong* that I have already created/allocated myself. Any input if there is a better method then this to use would be appreciated. Thanks. -Aaron On Wed, Apr 20, 2011 at 4:25 PM, Aaron Rich aaron.r...@gmail.com wrote: New to