scandum / tintin

TinTin++, aka tt++, is an extensible console MUD client.
https://tintin.mudhalla.net
GNU General Public License v3.0
199 stars 56 forks source link

HAVE_GNUTLS_H is defined to empty string #214

Open bbcallen opened 7 months ago

bbcallen commented 7 months ago

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],
scandum commented 6 months ago

Thanks, got it fixed for the next release.