Re: [protobuf] Apache Module + PB

2009-11-18 Thread josh rotenberg
I've never done Apache module stuff in C++ (C only) but I'd guess thats a good place to look first. I believe there are a few libraries out there that take some of the pain out of doing Apache modules in C++, so you might google around for those. Josh On Wed, Nov 18, 2009 at 7:56 AM, Mauro wrote

Re: [protobuf] Apache Module + PB

2009-11-18 Thread Henner Zeller
Is there anything you include before realtime-bidding.pb.h in mod_example.c that might be a broken include ? Like it contains a declaration of a class that does not have a semicolon after the final '}' ? On Wed, Nov 18, 2009 at 07:56, Mauro wrote: > Hi, > > I'm running Mac OS Tiger (powerpc-apple

Re: [protobuf] Apache Module + PB

2009-11-18 Thread Jason Hsueh
It looks like you're running gcc on a .c file, so it's trying to compile as C, not C++. You can either invoke g++ or name your file with one of the recognized extensions: http://gcc.gnu.org/onlinedocs/gcc/Invoking-G_002b_002b.html#Invoking-G_002b_002b On Wed, Nov 18, 2009 at 7:56 AM, Mauro wrote: