X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=configure.in;h=39bb7ea59f8e09cc530c24792714b248fafd0f86;hp=f48be12ff0e8915309e0278f197782171308c3b6;hb=faed98ab64dd3cbd29e674141cd074d6c9f8909c;hpb=6e0187ce721be4997bef32d724528f8976df89d6 diff --git a/configure.in b/configure.in index f48be12..39bb7ea 100644 --- a/configure.in +++ b/configure.in @@ -264,7 +264,7 @@ AC_CHECK_HEADERS(stdarg.h sys/ioctl.h ioctl.h sysexits.h) AC_CHECK_HEADERS(sys/time.h sys/resource.h) AC_CHECK_HEADERS(unix.h) -AC_CHECK_FUNCS(setrlimit getsid) +AC_CHECK_FUNCS(setrlimit getsid isctype) AC_TYPE_SIGNAL @@ -596,6 +596,34 @@ AC_ARG_WITH(ssl, [ --with-ssl[=PFX] Compile in SSL support for POP/IM ]) AM_CONDITIONAL(USE_SSL, test x$need_ssl = xyes) +AC_ARG_WITH(gnutls, [ --with-gnutls[=PFX] Compile in GNU TLS support for POP/IMAP], +[ if test "$need_ssl" = "yes" + then + AC_MSG_ERROR([In order to compile in GNU TLS support, you must first disable SSL support]) + fi + if test "$with_gnutls" != "no" + then + if test "$need_socket" != "yes"; then + AC_MSG_ERROR([GNU TLS support is only useful with POP or IMAP support]) + fi + if test "$with_gnutls" != "yes" + then + LDFLAGS="$LDFLAGS -L$withval/lib" + CPPFLAGS="$CPPFLAGS -I$withval/include" + fi +#saved_LIBS="$LIBS" + + AC_CHECK_LIB([gnutls], [gnutls_init],, AC_MSG_ERROR(Unable to find GNU TLS library)) + + AC_DEFINE(USE_GNUTLS,1,[ Define if you want support for GNU TLS. ]) +#LIBS="$saved_LIBS" +#MUTTLIBS="$MUTTLIBS -lgnutls" + MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_ssl_gnutls.o" + need_gnutls=yes + fi +]) +AM_CONDITIONAL(USE_GNUTLS, test x$need_gnutls = xyes) + dnl SSL support via NSS AC_ARG_WITH(nss, [ --with-nss[=PFX] Compile in SSL support for POP/IMAP via NSS], [ if test "$with_nss" != no