configure: WARNING: Disabling Autokey, --enable-autokey requires --with-crypto.
时间: 2024-02-09 14:13:26 浏览: 128
这个警告提示是由configure脚本生成的,意思是如果你要启用Autokey功能,就需要同时指定--with-crypto选项,否则Autokey功能会被禁用。
--enable-autokey选项用于启用Autokey功能,--with-crypto选项用于指定加密库的路径或目录。如果你没有指定--with-crypto选项,configure脚本无法找到加密库,就会禁用Autokey功能。
因此,如果你想启用Autokey功能,就需要同时指定--enable-autokey和--with-crypto选项,比如:
```
./configure --enable-autokey --with-crypto=/path/to/crypto
```
其中,/path/to/crypto是你安装的加密库的路径或目录。
阅读全文