Auto-commit of generated files.
This commit is contained in:
parent
825cd63ca9
commit
e7d4e61f1e
2 changed files with 29 additions and 0 deletions
|
@ -279,6 +279,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define if using GnuTLS. */
|
||||
#undef HAVE_GNUTLS
|
||||
|
||||
/* Define if using GnuTLS certificate verification callbacks. */
|
||||
#undef HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY
|
||||
|
||||
/* Define to 1 if you have the `gnutls_certificate_set_verify_function'
|
||||
function. */
|
||||
#undef HAVE_GNUTLS_CERTIFICATE_SET_VERIFY_FUNCTION
|
||||
|
||||
/* Define to 1 if you have the gpm library (-lgpm). */
|
||||
#undef HAVE_GPM
|
||||
|
||||
|
|
22
autogen/configure
vendored
22
autogen/configure
vendored
|
@ -10813,6 +10813,7 @@ fi
|
|||
|
||||
|
||||
HAVE_GNUTLS=no
|
||||
HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY=no
|
||||
if test "${with_gnutls}" = "yes" ; then
|
||||
|
||||
succeeded=no
|
||||
|
@ -10913,7 +10914,28 @@ $as_echo "no" >&6; }
|
|||
$as_echo "#define HAVE_GNUTLS 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
|
||||
LIBS="$LIBGNUTLS_LIBS $LIBS"
|
||||
for ac_func in gnutls_certificate_set_verify_function
|
||||
do :
|
||||
ac_fn_c_check_func "$LINENO" "gnutls_certificate_set_verify_function" "ac_cv_func_gnutls_certificate_set_verify_function"
|
||||
if test "x$ac_cv_func_gnutls_certificate_set_verify_function" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_GNUTLS_CERTIFICATE_SET_VERIFY_FUNCTION 1
|
||||
_ACEOF
|
||||
HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY=yes
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
if test "${HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY}" = "yes"; then
|
||||
|
||||
$as_echo "#define HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue