|
Compiling Apache Webserver on linux |
|
Facts -
HTML and Javascript
|
|
Monday, 23 November 2009 12:22 |
|
I want to set up an Apache Webserver for hosting multiple ssl domains. This is only possible with a recent version of this webserver: version 2.2.12 or later. Since I could not find any rpm packages for such a recent version I am trying to compile it myself, using the configure option --enable-ssl . At my first attempt I got the following error message during linking:
undefined reference to `apr_os_uuid_get'
So I went back to the apache installation instruction and found that the configure option --with-included-apr fixes this problem.
However no matter how often I tried, I kept getting this error message. I even tried using a manually installed APR using the options --with-apr and --with-apr-util .
It turned out that I needed to do a make clean before compiling using make
|