Forum OpenACS Development: Re: Complete Jabber Package for Openacs

Collapse
Posted by Nima Mazloumi on
Hi Bjoern,
I tried to compile the ns_jabber module but got the following error message calling make in bin directory:

madura:/usr/local/src/aolserver40r2/nsjabber/bin # make
Makefile:70: ../../include/Makefile.module: File or Directory not found
make: *** No rule to create »../../include/Makefile.module«

Any idea what goes wrong?

Greetings,
Nima

Collapse
Posted by Bjoern Kiesbye on
Hi Nima,

the Makefile.module is created when you configure Aolserver  (%>./configure), it schould be in
madura:/usr/local/src/aolserver40r2/include/Makefile.module
.

If you have Aolserver already installed , you can modify the Makefile of the nsjabber module  to use this instalation instead.

in a shell type:

%>emacs /usr/local/src/aolserver40r2/nsjabber/bin/Makefile

Then replace the value of the NSHOME variable at the top of the Makefile, with the path to your Aolserver instalation.

repalce: NSHOME="../../"
with:    NSHOME="/path/to/your/aolserver/instalation"
examp.  NSHOME="/usr/local/aolserver"

Now save the Makfile (ctrl-x ctrl-f) , and try to run make as you did befor.

Good luck,
Bjoern