tintin icon indicating copy to clipboard operation
tintin copied to clipboard

HAVE_GNUTLS_H is defined to empty string

Open bbcallen opened this issue 1 year ago • 1 comments

In configure.ac

AC_CHECK_HEADERS([gnutls/gnutls.h],
	[AC_DEFINE([HAVE_GNUTLS_H],,
	[Define to 1 if you have <gnutls/gnutls.h>.])],
	[AC_MSG_WARN([gnutls header file not found, is the develoment part present])])

I think it's supposed to be

[AC_DEFINE([HAVE_GNUTLS_H],[1],

bbcallen avatar Feb 21 '24 07:02 bbcallen

Thanks, got it fixed for the next release.

scandum avatar Feb 21 '24 17:02 scandum