cannot find the library '/root/httpd-2.2.34/srclib/apr-util/xml/expat/libexpat.la' or unhandled argument '/root/httpd-2.2.34/srclib/apr-util/xml/expat/libexpat.la'
时间: 2023-06-28 11:13:59 浏览: 154
was not found on the java.library.path
这个错误通常是由于编译时指定了错误的路径或参数导致的。你需要检查一下编译时指定的路径和参数是否正确。
首先,确认你是否正确安装了 expat 库。如果没有安装,可以尝试使用以下命令安装:
```
sudo apt-get install libexpat1-dev
```
如果已经安装了 expat 库,那么可能是编译时指定了错误的路径或参数。你可以尝试重新编译,并确保指定了正确的路径和参数。例如,在编译 Apache 时,可以尝试使用以下命令:
```
./configure --with-included-apr --with-expat=/usr/local
```
其中,`--with-expat` 参数指定了正确的 expat 库路径。你需要根据你的实际情况进行调整。
阅读全文