linux perl Makefile.PL MP_APXS=/usr/bin/apxs [ error] Using Perl 5.036001 w/o ithreads and httpd-2.4.
时间: 2024-05-23 21:12:16 浏览: 106
linux--Makefile.rar_Linux/Unix编程_Unix_Linux_
这个错误提示是在安装 mod_perl 模块时出现的。它指出你的 Perl 版本不支持线程(ithreads),并且你正在尝试为 Apache 2.4 编译 mod_perl 模块。
要解决这个问题,你可以尝试以下几个方法:
1. 升级你的 Perl 版本到支持线程的版本。
2. 编译一个旧版本的 Apache,比如 2.2 版本,这个版本可以与不支持线程的 Perl 版本一起使用。
3. 使用不需要 mod_perl 的方式来运行你的应用程序,比如使用 FastCGI 或者 PSGI。
希望能帮到你!
阅读全文