Install apache on fedora8
> Tar-zxvf httpd-2.2.8.tar.gz
> Cd httpd-2.2.8
>./Configure -- prefix =/usr/local/httpd
> Make
The following error occurs during make. I have never encountered this problem before.
Libtool: link: 'passwd/apr_getpass.lo is not a valid libtool object
Make [3]: *** [libapr-1.la] Error 1
Make [3]: Leaving directory/root/httpd-2.2.8/srclib/apr
Make [2]: *** [all-recursive] Error 1
Make [2]: Leaving directory/root/httpd-2.2.8/srclib/apr
Make [1]: *** [all-recursive] Error 1
Make [1]: Leaving directory '/root/httpd-2.2.8/srclib
Make: *** [all-recursive] Error 1
Later, we found that apr & apr-util was missing.
Go to http://apr.apache.org/the latest apr-1.2.12-tar.gzand apr-util-1.2.12.tar.gz
> Tar-zxvf apr-1.2.12-tar.gz
> Cd apr-1.2.12
>./Configure -- prefix =/usr/local/apr-httpd/
> Make & make install
> Tar-zxvf apr-util-1.2.12-tar.gz
> Cd apr-util-1.2.12
>./Configure -- prefix =/usr/local/apr-util-httpd/-- with-apr =/usr/local/apr-httpd/
> Make & make install
Go back to the apache compilation directory
>. /Configure -- prefix =/usr/local/httpd/-- with-apr =/usr/local/apr-httpd/-- with-apr-util =/usr/local/apr- util-httpd/
> Make
> Make install
Solve the problem.