Forum OpenACS Q&A: error in AOL 4 installation

Collapse
Posted by Fitri Sinan on
hello everyone,

i have a problem during installation nscache.i have following all the forum but still can't solve my problem.im just following the documentation.during this stage:-

[root aolserver]# cd /usr/local/src/aolserver40r10/nscache
[root nscache]# make install AOLSERVER=/usr/local/aolserver

an error occur like below:-

[root@localhost nscache]# make install AOLSERVER=/usr/local/aolserver
../aolserver/include/Makefile.module:108: /usr/local/aolserver/include/Makefile.global: No such file or directory
make: *** No rule to make target `/usr/local/aolserver/include/Makefile.global'. Stop.

i used fedora core 4.someone please help me.

Collapse
Posted by Nitish Bezzala on
Hi Fitri,

You have to edit the Makefile.module and define AOLSERVER.

$ cd /usr/local/src/aolserver40r10/aolserver/include
$ cp Makefile.module Makefile.module.orig
$ vi Makefile.module

AOLSERVER=/usr/local/src/aolserver/40r10

$ cd ../nscache
$ make install

Please let me know if anyone knows a better way to do this.

Nitish

Collapse
Posted by Patrick Giagnocavo on
Any variables that are missing, can be supplied on the command line or in the environment.

That is, the line

export AOLSERVER=/usr/local/aolserver

followed by "make" or "gmake" should work .

Also, if you change around the line in the first post to

AOLSERVER=/usr/local/aolserver make install

I believe it would work as well...

Collapse
Posted by xx xx on
http://www.panoptic.com/aolserver/chat/20041130.html

Try locating ./include/Makefile.global and point the AOLSERVER var to the base directory. I would think AOLSERVER=/usr/local/src/aolserver40r10

If it works, please suggest what changes need to be made to the docs to clarify what needs to be done.