[protobuf] Re: Does anybody compile protobuf successfully on HP-UX?

2009-11-17 Thread Kenton Varda
On Sun, Nov 15, 2009 at 8:12 PM, Jackie wrote: > > Yes, it works! Thank you, Kenton :) > > And I got another error report: > >./ -I. --cpp_out=. > sh: ./: Execute permission denied. > *** Error exit code 126 > This can also be fixed by using GNU make instead of your system's make. > BT

[protobuf] Compiling on Solaris 9 - stdint.h

2009-11-17 Thread Exaurdon
It appears that libprotobuf cannot be built on Solaris 9 due to the absence of stdint.h. Is this a know nlimitation? and are there know workarounds? Thanks, Alex --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prot

Re: [protobuf] Compiling on Solaris 9 - stdint.h

2009-11-17 Thread Kenton Varda
I'm pretty sure several people have compiled on Solaris 9. Perhaps it is your particular compiler that is lacking this? stdint.h was introduced by C99 -- can you use a compiler that is less than 10 years old? Does your system have inttypes.h? If so, you could perhaps symlink stdint.h to it. On

Re: [protobuf] Compiling on Solaris 9 - stdint.h

2009-11-17 Thread Monty Taylor
Indeed. Grab the latest sun studio and you should be good. "Kenton Varda" wrote: >I'm pretty sure several people have compiled on Solaris 9. Perhaps it is >your particular compiler that is lacking this? stdint.h was introduced by >C99 -- can you use a compiler that is less than 10 years old? >