Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-21 Thread Patrick Robinson
I haven't tried to upgrade anything to Ubuntu 14 yet, but I did notice that it includes Apache 2.4 (rather than 2.2, which they used in earlier releases). There are some API changes in 2.4, but I haven't yet looked to see if any of them affect mod_WebObjects. - Patrick On May 20, 2014, at 9:

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread D Tim Cummings
Thanks Markus. This worked for me too. I should check the list for updates before posting but comforting to know I came up with the same solution ;) Tim On 21 May 2014, at 7:04, Markus Stoll, junidas GmbH wrote: > Hi, > > I could reproduce your problem. > pleass try patching Adaptor/shmem

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread D Tim Cummings
Hi Christoph (and markusstoll) The reason this isn't compiling is because of a change made by markusstoll on 18 April to Utilities/Adaptors/Adaptor/shmem.c .With his changes, shown below, WOShmem_base_address is type (void *) and on line 78 offset is cast to (void *). The compiler is rightfull

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread Markus Stoll, junidas GmbH
Hi, I could reproduce your problem. pleass try patching Adaptor/shmem.c replace this line #define offset_to_addr(offset) ((void *)(WOShmem_base_address + (void *)offset)) with #define offset_to_addr(offset) ((void *)(WOShmem_base_address + offset)) This helped for me, if this helps for you to

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread CHRISTOPH WICK | i4innovation GmbH, Bonn
Hallo Markus, thanks for your help. My compiler says: > $ gcc -v > Using built-in specs. > COLLECT_GCC=gcc > COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper > Target: x86_64-linux-gnu > Configured with: ../src/configure -v --with-pkgversion='Ubuntu > 4.8.2-19ubuntu1' --with-bug

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread Markus Stoll, junidas GmbH
Hi, > I'm trying to build the Apache Adaptor for Ubuntu 14 LTS manually following > the instructions on > http://wiki.wocommunity.org/display/documentation/Compiling+the+HTTP+adaptor+on+Linux > > If I try to execute "make CC=gcc", I get the following error: > >> gcc -I/usr/local/include -O2 -I

Re: Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread D Tim Cummings
Hi Christoph, I built the Apache Adaptor when I upgraded from 13.04 to 13.10 and didn't need to build again when upgrading from 13.10 to 14.04. This is the procedure I used. I hope this helps Tim # WebObjects Apache adaptors didn’t work with 2.4 and new ones don’t exist yet so installed fro

Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread CHRISTOPH WICK | i4innovation GmbH, Bonn
Hi List, I'm trying to build the Apache Adaptor for Ubuntu 14 LTS manually following the instructions on http://wiki.wocommunity.org/display/documentation/Compiling+the+HTTP+adaptor+on+Linux If I try to execute "make CC=gcc", I get the following error: > gcc -I/usr/local/include -O2 -I../Adapt

Building Apache Adaptor on Ubuntu 14 LTS

2014-05-20 Thread CHRISTOPH WICK | i4innovation GmbH, Bonn
Hi List, I'm trying to build the Apache Adaptor for Ubuntu 14 LTS manually following the instructions on http://wiki.wocommunity.org/display/documentation/Compiling+the+HTTP+adaptor+on+Linux If I try to execute "make CC=gcc", I get the following error: > gcc -I/usr/local/include -O2 -I../Adapt