Re: Protocol Buffers and pretty print

2009-08-22 Thread Saptarshi
Hmm, I fount the text output here: http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.text_format.html Thank you Saptarshi On Aug 22, 12:06 am, Saptarshi saptarshi.g...@gmail.com wrote: Hello, I'm new to using Protocol Buffers and am debugging my program. Is

Re: 2.2.0 make check failures on Solaris 10 sparc32 (problems with zlib?)

2009-08-22 Thread Kenton Varda
Run configure --without-zlib to disable zlib support. Alternatively, fix it and send me a patch. :) On Fri, Aug 21, 2009 at 8:44 PM, Oliver Jowett oliver.jow...@gmail.comwrote: Oliver Jowett wrote: The tests start failing here: [--] 14 tests from IoTest [ RUN ]

Re: Protocol Buffers and pretty print

2009-08-22 Thread Kenton Varda
message-DebugString() is a shortcut that returns a string representation of the message. On Fri, Aug 21, 2009 at 9:06 PM, Saptarshi saptarshi.g...@gmail.com wrote: Hello, I'm new to using Protocol Buffers and am debugging my program. Is there a way to pretty print a Message? (I'm new to C++

Re: Notes on building a 64-bit install on Solaris 10 x86

2009-08-22 Thread Monty Taylor
Oliver Jowett wrote: Monty Taylor wrote: Kenton Varda wrote: I'm pretty sure #1 is not protobuf's fault. I've never heard of libgcc_s which means it's probably something GCC links against implicitly. And anyway, if libwhatever.so.1 exists, there should always be a libwhatever.so symlink

Re: 2.2.0 make check failures on Solaris 10 sparc32 (problems with zlib?)

2009-08-22 Thread Oliver Jowett
Kenton Varda wrote: Run configure --without-zlib to disable zlib support. Alternatively, fix it and send me a patch. :) I took a look at fixing it in gzip_stream.{cc,h} (conditionally removing GZIP format so you'd get compile errors if you tried to use that on a system with an old zlib), but