How to create git in Red Hat Enterprise Linux 3?

When you try to create git v1.7.0.6 on Red Hat Enterprise Linux 3, you get an error message:

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

I have an answer to this question, and I just post it here for posterity.

+3
source share
1 answer

The solution should start. / configure with a flag to tell him where to find krb5.h:

./configure CFLAGS='-I/usr/kerberos/include'
+2
source

Source: https://habr.com/ru/post/1742598/


All Articles