Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Apache 2.2

So I am following the directions and I did:

./configure --prefix=/fmac/users/f****/apacheServer \
  --exec-prefix=/fmac/users/f*****/apaacheServer

and it seems to work no errors or anything.

Then I do:

make
make install

And i get the following error on install:

libtool: install: error: cannot install `libaprutil-1.la' to a directory not
                         ending in /usr/local/apache2/lib

Any ideas why is there some other config var i need to set?

like image 398
Landister Avatar asked Feb 10 '11 19:02

Landister


People also ask

How do I install Apache 2.4 on Windows 10?

Step by step Apache install on Windows Download the installation media in the form of a ZIP file. Extract the contents of the Apache Web Server 2.4 zip to the file system. Locate the extracted Apache24 folder and copy this folder to the root of C:\ Open the C:\Apache24\bin folder and run the httpd.exe command.

Is Apache 2.2 still supported?

Apache 2.2 will EOL completely on December 31, 2017 and there will not be any maintenance after that date.


1 Answers

In case anyone searches on Google for this answer, I figured out how to fix it. I had to:

make clean

in my httpd-NN build root directory (where NN is the version of httpd you are building).

And then it worked.

like image 84
Landister Avatar answered Nov 15 '22 09:11

Landister