Re: RC3

2012-10-25 Thread Ken Giusti
Centos5 x64 build failure - funny didn't I see this before? [ 69%] Building C object CMakeFiles/qpid-proton.dir/src/driver.c.o /home/kgiusti/proton/qpid-proton-c-0.1/src/driver.c:75:1: error: NAME_MAX redefined In file included from /usr/include/bits/local_lim.h:36, from

Re: RC3

2012-10-25 Thread William Henry
Thanks. It was ambiguous. Looked like it was optional and had a default (which it did) Now hopefully people can just deduce more info about the examples from the examples/README.txt and PROTON-100 can be ignored ;-) Sent from my iPhone On Oct 25, 2012, at 4:14 AM, Rafael Schloming

Re: RC3

2012-10-24 Thread Rob Godfrey
I got the following failure on proton-c from this release on 32-bit Ubuntu 12.04: proton_tests.codec.DataTest.testDecimal64 fail Error during test: Traceback (most recent call last):

Re: RC3

2012-10-24 Thread Darryl L. Pierce
On Wed, Oct 24, 2012 at 10:24:47PM +0200, Rob Godfrey wrote: I got the following failure on proton-c from this release on 32-bit Ubuntu 12.04: And I'm still failing on the package build with: /home/mcpierce/Packaging/rpms/BUILD/qpid-proton-c-0.1/src/driver.c: In function 'pn_driver_wakeup':

Re: RC3

2012-10-24 Thread Rafael Schloming
The examples should work without the config.sh, it just sets up stuff for the dev environment. If you do the make install, all the proton stuff should be available without any special environmental config. --Rafael On Wed, Oct 24, 2012 at 8:11 PM, William Henry whe...@redhat.com wrote: Are the

Re: RC3

2012-10-24 Thread William Henry
Thanks I'll try that. Sorry I guess I had built up a habit. Sent from my iPhone On Oct 24, 2012, at 7:29 PM, Rafael Schloming r...@alum.mit.edu wrote: The examples should work without the config.sh, it just sets up stuff for the dev environment. If you do the make install, all the proton

Re: RC3

2012-10-24 Thread Rafael Schloming
Can you post the contents of your install_manifest.txt? On Wed, Oct 24, 2012 at 9:50 PM, William Henry whe...@redhat.com wrote: Ok install was successful. Still have an ImportError for proton. Not sure what I'm missing William Sent from my iPhone On Oct 24, 2012, at 7:29 PM, Rafael

Re: RC3

2012-10-24 Thread William Henry
$ more build/install_manifest.txt /usr/local/bin/proton /usr/local/bin/proton-dump /usr/local/lib64/libqpid-proton.so /usr/local/include/proton/parser.h /usr/local/include/proton/util.h /usr/local/include/proton/ssl.h /usr/local/include/proton/scanner.h /usr/local/include/proton/cproton.i

Re: RC3

2012-10-24 Thread Rafael Schloming
It looks like you installed everything into /usr/local. I'm guessing the system python (installed in /usr) does not look under /usr/local as part of it's module search path. Try installing into /usr instead. --Rafael On Wed, Oct 24, 2012 at 10:10 PM, William Henry whe...@redhat.com wrote: $

Re: RC3

2012-10-24 Thread William Henry
Change: # depending on your system you may want to adjust the install prefix cmake -DCMAKE_INSTALL_PREFIX=/usr .. To: # Set the install prefix. You may need to adjust depending on your system cmake -DCMAKE_INSTALL_PREFIX=/usr .. - Original Message - It looks like you installed