当您尝试在Red Hat Enterprise Linux 3上构建git v1.7.0.6时,会得到一个错误:
In file included from /usr/include/openssl/ssl.h:179,
from git-compat-util.h:139,
from builtin.h:4,
from fast-import.c:147:
/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory我有这个问题的答案,我只是把它贴在这里给后人看。
发布于 2010-04-25 01:23:27
解决方案是使用一个标志运行./configure,告诉它在哪里可以找到krb5.h:
./configure CFLAGS='-I/usr/kerberos/include'https://stackoverflow.com/questions/2705424
复制相似问题