| Windows Apache (6) mod_perl (3) File Types (33) Internet Explorer (6) Network (11) Passwords (6) Printing Processes (13) Programming (318) |
Compiling apache 2 on FreeBSD 6
Question: I need to install apache2 on my BSD box (FreeBSD 6.2) and when I compile using [@make@], it throws this error message:/usr/local/directadmin/custombuild/httpd-2.2.6/srclib/apr/libapr-1.la -lcrypt -lpthread /usr/bin/ld: cannot find -lexpat *** Error code 1 How can I find this expat library? Answer: Use the built-in expat functionality. Run make clean and then start over with this switch in the configure statement:./configure --with-expat=builtin Afterwards simply run make and make install and you will have no problems.
Comments:
|