I;m trying to compile GnuTLS. When I thy to configure the package I get this error:
configure:8820: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lnettle -lhogweed -lgmp >&5
/usr/bin/ld: cannot find -lhogweed
collect2: ld returned 1 exit status
I searched google for hogweed but there is no such a package? How I can fix this problem?
When linking with libraries you remove the
libfrom their name and append it to-lie for example
libcryptolibrary will be linked by passing option-lcryptoin your case its is
-lhogweedthat is missing. That meanslibhogweedlibrary is missing.A simple Google search of ‘libhogweed’ shows that its a part of ‘GNU Nettle cryptographic library’. So you can install this and fix your problem.