Re: Error building/running tests on avro c++

2014-08-01 Thread svante karlsson
I had some issues with the cmakefile when I built avro c++ for windows a month or two ago. If I remebered correctly it did not find or possibly figure out the configuration of boost. I ended up doing some small hacks in the CMakeList.txt file to get it to compile. This was on windows so the

RE: Error building/running tests on avro c++

2014-08-01 Thread jeff saremi
Svente, thanks very much for the info. I looked at the shell file as well. I'm not doing much different than that. So i believe this has to do with the boost compilation on my platform: Solaris. The shell file in the link did the default invocation of boost build which is what i did. But i think

Re: Error building/running tests on avro c++

2014-08-01 Thread svante karlsson
Since your using solaris check the ticket below: (it speaks about a bug in 1.53 that has been fixed in 1.54) https://svn.boost.org/trac/boost/ticket/8212 /svante 2014-08-01 15:28 GMT+02:00 jeff saremi jeffsar...@hotmail.com: Svente, thanks very much for the info. I looked at the shell file

RE: Error building/running tests on avro c++

2014-08-01 Thread jeff saremi
Yes it was probably due to these. possibly i failed to notice the errors in 1.54. I tried 1.55 but that one was full of Solaris-related errors. I will go back until i find a safe version. Date: Fri, 1 Aug 2014 17:42:46 +0200 Subject: Re: Error building/running tests on avro c++ From:

Defining mutually recursive types using Avro IDL

2014-08-01 Thread Shafquat Rahman
Hi, I was trying to use Avro IDL to organize a complicated schema and ran into a problem with mutually recursive types. Here is a simple example: { type : record, name : Outer, fields : [ { name : outerValue, type : { type : record,