Installing fastcgi so

0

Following the install instructions I start with:

apxs -o mod_fastcgi.so -c *.c

which produces .o, .la, .lo, .slo but no .so, so the next step of:

apxs -i -a -n fastcgi mod_fastcgi.so

fails.

I tried the more manual approach of moving Makefile.AP2 to Makefile and running

make top_dir=/path/to/http

Which complains about a missing "special.mk" if you set it incorrectly, so with it set correctly that works and on the next step of

make install 

it complains that top_dir is a Directory. Of course it's a directory!

??? Any ideas?

Felix

Posted 2012-03-08T02:48:35.283

Reputation: 101

What OS/Distro? – Journeyman Geek – 2012-05-28T12:32:24.253

Answers

2

If you have OS X, try:

top_dir=/usr/share/httpd

… and add one line:

CFLAGS=-arch x86_64

This might work.

Dominic

Posted 2012-03-08T02:48:35.283

Reputation: 21